/* Non-critical CSS - Loaded after page render */
/* Complete Nera to Near Job Portal Styles */

/* Global Background Fix */
html, body {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

main {
    background: transparent;
    margin: 0;
    padding: 0;
}

/* CSS Reset for Company Dashboard */
.company-sidebar * {
    box-sizing: border-box !important;
}

.company-sidebar ul {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.company-sidebar a {
    text-decoration: none !important;
}

.company-sidebar button {
    border: none !important;
    background: none !important;
    cursor: pointer !important;
}

/* Analytics Page Styles */
.analytics-metrics {
    padding: 40px 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.metric-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.metric-icon i {
    font-size: 24px;
    color: white;
}

.metric-content h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
    line-height: 1;
}

.metric-content p {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

/* Analytics Charts Section */
.analytics-charts {
    padding: 40px 0;
}

.charts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.chart-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.chart-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.chart-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    padding: 24px;
}

.chart-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.chart-header i {
    font-size: 1.125rem;
}

.chart-content {
    padding: 32px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Analytics Details Section */
.analytics-details {
    padding: 40px 0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-bottom: 40px;
}

.detail-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.detail-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.detail-card .card-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    padding: 24px;
}

.detail-card .card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.detail-card .card-header i {
    font-size: 1.125rem;
}

.detail-card .card-content {
    padding: 24px;
}

/* Status List Styles */
.status-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.status-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
}

.status-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.status-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
}

.status-dot.approved {
    background: #16a34a;
}

.status-dot.pending {
    background: #d97706;
}

.status-dot.rejected {
    background: #dc2626;
}

.status-dot.featured {
    background: #008080;
}

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

.status-count {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 1.125rem;
}

/* Category List Styles */
.category-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
}

.category-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.category-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.category-name {
    font-weight: 500;
    color: #374151;
}

.category-count {
    font-weight: 600;
    color: #1e3a5f;
    font-size: 1.125rem;
}

/* Recent Activity Section */
.recent-activity {
    padding: 40px 0;
}

.activity-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.activity-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.activity-card .card-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    padding: 24px;
}

.activity-card .card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.activity-card .card-header i {
    font-size: 1.125rem;
}

.activity-card .card-content {
    padding: 24px;
}

.activity-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: #f1f5f9;
    transform: translateX(4px);
}

.activity-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.activity-icon i {
    font-size: 20px;
    color: white;
}

.activity-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.activity-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.job-category {
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-date {
    font-size: 0.875rem;
    color: #718096;
}

/* Responsive Design for Analytics */
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .charts-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .metric-card {
        padding: 24px;
    }
    
    .metric-content h3 {
        font-size: 2rem;
    }
    
    .chart-content {
        height: 250px;
        padding: 20px;
    }
    
    .activity-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .activity-meta {
        flex-direction: column;
        gap: 8px;
    }
}

:root {
    --primary-color: #1e3a5f; /* Navy Blue */
    --secondary-color: #008080; /* Teal */
    --accent-color: #00b3b3; /* Light Teal */
    --success-color: #008080; /* Teal for success */
    --warning-color: #ff8c00; /* Dark Orange */
    --light-bg: #f0f8f8; /* Very Light Teal */
    --dark-text: #1e3a5f; /* Navy Blue */
    --light-text: #4a6b8a; /* Muted Navy */
    --gradient-primary: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    --gradient-secondary: linear-gradient(135deg, #008080 0%, #00b3b3 100%);
    --gradient-accent: linear-gradient(135deg, #00b3b3 0%, #008080 100%);
    --gradient-teal: linear-gradient(135deg, #008080 0%, #00b3b3 100%);
    --gradient-navy: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    --shadow-light: 0 4px 20px rgba(30, 58, 95, 0.08);
    --shadow-medium: 0 8px 32px rgba(30, 58, 95, 0.12);
    --shadow-heavy: 0 20px 60px rgba(30, 58, 95, 0.15);
    --shadow-teal: 0 4px 20px rgba(0, 128, 128, 0.15);
    --border-radius: 16px;
    --border-radius-large: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Hero Section */
.hero-section {
    background: transparent;
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.2;
    z-index: 1;
}

.hero-slider-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-slider-image-mobile {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    display: none;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-content {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo {
    height: 20px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.1);
}

.section-logo {
    height: 18px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.section-logo:hover {
    transform: scale(1.1);
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
    color: white;
}

.text-gradient {
    background: linear-gradient(135deg, #00b3b3, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 580px;
}

/* Modern Professional Search Section */
.hero-search-section {
    margin: 48px 0;
}

.search-container {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.search-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a5f, #008080);
}

.search-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    background: var(--light-bg);
    border-radius: 12px;
    padding: 4px;
}

.search-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    background: transparent;
    color: var(--light-text);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.search-tab.active {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.search-tab:hover {
    color: var(--primary-color);
}

.search-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 16px;
    margin-bottom: 16px;
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i {
    position: absolute;
    left: 16px;
    color: var(--light-text);
    z-index: 2;
}

.search-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1e3a5f, #008080);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
}

.search-btn:hover {
    background: linear-gradient(135deg, #008080, #1e3a5f);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 128, 128, 0.3);
}

.popular-searches {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 0.9rem;
    color: var(--light-text);
}

.popular-searches span {
    font-weight: 600;
}

.popular-tag {
    color: var(--secondary-color);
    text-decoration: none;
    padding: 4px 12px;
    background: rgba(0, 128, 128, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.popular-tag:hover {
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
}

.search-form {
    display: none;
}

.search-form.active {
    display: block;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: var(--shadow-medium);
}

.btn-primary-hero:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    color: var(--primary-color);
    text-decoration: none;
}

.btn-secondary-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    color: white;
    text-decoration: none;
}

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

.hero-visual-card {
    background: transparent;
    border-radius: 24px;
    padding: 40px 32px;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.hero-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: -1;
}

.hero-icon-container {
    position: relative;
    margin-bottom: 40px;
}

.hero-icon-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero-icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

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

.hero-stat-item {
    text-align: center;
    padding: 20px 12px;
    background: transparent;
    border-radius: 16px;
    backdrop-filter: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: white;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-stat-label {
    font-size: 0.7rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

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

.section-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Featured Section */
.featured-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.featured-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.featured-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.card-header-section {
    background: var(--gradient-primary);
    color: white;
    padding: 24px;
    position: relative;
}

.card-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gradient-teal);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-teal);
}

.category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.category-badge.job {
    background: rgba(0, 128, 128, 0.2);
    color: #008080;
    border: 1px solid rgba(0, 128, 128, 0.3);
}

.category-badge.internship {
    background: rgba(30, 58, 95, 0.2);
    color: #1e3a5f;
    border: 1px solid rgba(30, 58, 95, 0.3);
}

.category-badge.seminar_workshop {
    background: rgba(0, 179, 179, 0.2);
    color: #00b3b3;
    border: 1px solid rgba(0, 179, 179, 0.3);
}

.card-content {
    padding: 32px;
}

.opportunity-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.organization-name {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.opportunity-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 0.9rem;
}

.highlight-item i {
    width: 16px;
    color: var(--primary-color);
}

.opportunity-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 24px;
}

.card-actions {
    padding: 0 32px 32px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    color: white;
    text-decoration: none;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--gradient-primary);
}

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

.category-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius-large);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #008080, #00b3b3);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.category-icon-wrapper {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.3);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.4);
}

.category-card:hover .icon-glow {
    opacity: 1;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.category-description {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 24px;
    font-weight: 500;
}

.category-stats {
    margin-bottom: 20px;
}

.category-features {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.feature-tag {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: black;
    display: block;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.stat-label {
    font-size: 0.875rem;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-category {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.2);
}

.btn-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(30, 58, 95, 0.3);
    color: white;
    text-decoration: none;
}

/* Latest Opportunities Section */
.latest-opportunities-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.latest-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.latest-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.latest-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.time-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--dark-text);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--primary-color);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.view-all-section {
    text-align: center;
}

.btn-primary-large {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--gradient-primary);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.125rem;
}

.btn-primary-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    color: white;
    text-decoration: none;
}

.view-all-note {
    margin-top: 24px;
    color: var(--light-text);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Companies Section */
.companies-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.company-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 128, 128, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.company-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 128, 128, 0.2);
}

.company-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #008080, #006666);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.company-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.company-logo i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

/* Company logo image styles for job cards */
.company-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    background: white;
    padding: 4px;
}

/* Company initial styles for fallback */
.company-initial {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.company-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
    line-height: 1.3;
    word-wrap: break-word;
}

.company-location {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.company-location i {
    color: #6c757d;
    font-size: 0.85rem;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.company-stats .stat {
    font-size: 0.8rem;
    color: #008080;
    font-weight: 600;
    background: rgba(0, 128, 128, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
}

.company-stats .stat i {
    font-size: 0.75rem;
    color: #008080;
}

/* Privacy Policy Page Styles */
.page-hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.page-hero-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.privacy-visual-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.visual-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-teal);
}

.privacy-content-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.privacy-content {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-light);
}

.policy-section {
    margin-bottom: 48px;
}

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

.section-title {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--light-bg);
}

.section-number {
    width: 40px;
    height: 40px;
    background: var(--gradient-teal);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.section-intro .lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--dark-text);
    margin-bottom: 24px;
}

.notice-box {
    background: rgba(0, 128, 128, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 24px 0;
}

.notice-box i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 2px;
}

.notice-box p {
    margin: 0;
    color: var(--dark-text);
    line-height: 1.6;
}

.info-category {
    margin: 24px 0;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 12px;
}

.info-category h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.info-list, .usage-list, .sharing-list, .cookie-list, .retention-list, .rights-list, .legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li, .usage-list li, .sharing-list li, .cookie-list li, .retention-list li, .rights-list li, .legal-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    line-height: 1.6;
    color: var(--dark-text);
}

.info-list li:before, .usage-list li:before, .cookie-list li:before, .retention-list li:before, .rights-list li:before, .legal-list li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.sharing-list li {
    margin-bottom: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.privacy-sidebar {
    position: sticky;
    top: 20px;
}

.sidebar-card {
    background: white;
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-light);
}

.sidebar-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

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

.sidebar-nav li {
    margin-bottom: 8px;
}

.sidebar-nav a {
    display: block;
    padding: 8px 12px;
    color: var(--light-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-nav a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    text-decoration: none;
}

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

.related-links li {
    margin-bottom: 8px;
}

.related-links a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.related-links a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-section {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 2px solid var(--light-bg);
}

.contact-card {
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Enhanced Contact Page Styles */
.contact-hero-section {
    background: var(--gradient-primary);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.contact-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
}

.contact-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.contact-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.contact-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: #000000;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-visual {
    position: relative;
    z-index: 2;
}

.contact-visual-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-visual-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-teal);
}

.contact-visual-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: white;
}

.contact-visual-card p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-visual-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.feature-item i {
    color: var(--accent-color);
    font-size: 1rem;
}

/* Contact Content Section */
.contact-content-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-content {
    background: white;
    border-radius: 20px;
    padding: 48px;
    box-shadow: var(--shadow-light);
}

.contact-form-section {
    margin-bottom: 60px;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-progress {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    gap: 20px;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.progress-step.active {
    opacity: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.progress-step.active .step-number {
    background: var(--secondary-color);
    color: white;
    box-shadow: var(--shadow-teal);
}

.step-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--light-text);
    text-align: center;
}

.progress-step.active .step-label {
    color: var(--secondary-color);
    font-weight: 600;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    margin-bottom: 32px;
}

.contact-form {
    background: var(--light-bg);
    border-radius: 16px;
    padding: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-text);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

.form-control.error {
    border-color: #e74c3c;
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.1);
}

.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    gap: 16px;
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-large {
    background: var(--gradient-teal);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-teal);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 128, 128, 0.3);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.form-check-input {
    margin-top: 4px;
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.5;
}

.form-check-label a {
    color: var(--secondary-color);
    text-decoration: none;
}

.form-check-label a:hover {
    text-decoration: underline;
}

/* Job Type Dropdown Styling */
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

#job_type {
    font-weight: 500;
}

#job_type option {
    padding: 8px;
    font-weight: 500;
}

#job_type option[value="remote"] {
    color: var(--secondary-color);
}

#job_type option[value="hybrid"] {
    color: var(--accent-color);
}

#job_type option[value="on-site"] {
    color: var(--dark-text);
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-accordion {
    margin-top: 32px;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
}

.faq-header {
    background: white;
}

.faq-button {
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--dark-text);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background: var(--light-bg);
}

.faq-button.collapsed .fa-chevron-down {
    transform: rotate(0deg);
}

.faq-button .fa-chevron-down {
    transition: transform 0.3s ease;
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px 20px;
    background: white;
    color: var(--light-text);
    line-height: 1.6;
}

/* Contact Sidebar */
.contact-sidebar {
    position: sticky;
    top: 20px;
}

.contact-info-card {
    border: none;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.card-header {
    background: var(--gradient-teal);
    color: #184866;
    padding: 24px;
    text-align: center;
    margin: -24px -24px 24px -24px;
}

.card-header h4 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.card-header p {
    opacity: 0.9;
    margin: 0;
    font-size: 0.9rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.contact-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.contact-details p {
    font-size: 1rem;
    color: var(--secondary-color);
    margin-bottom: 4px;
    font-weight: 500;
}

.contact-details small {
    color: var(--light-text);
    font-size: 0.85rem;
}

.contact-action {
    display: inline-block;
    margin-top: 8px;
    padding: 8px 16px;
    background: var(--gradient-teal);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-action:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
    color: white;
    text-decoration: none;
}

/* Response Info */
.response-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--light-bg);
    border-radius: 8px;
}

.response-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.response-item strong {
    font-size: 0.9rem;
    color: var(--dark-text);
}

.response-item p {
    font-size: 0.85rem;
    color: var(--light-text);
    margin: 0;
}

/* Social Links */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: var(--light-bg);
    border-radius: 8px;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--secondary-color);
    color: white;
    text-decoration: none;
    transform: translateX(4px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Office Hours */
.office-hours {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.hours-item .day {
    font-weight: 500;
    color: var(--dark-text);
}

.hours-item .time {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: black;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-large);
    padding: 60px 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.cta-action-content {
    text-align: center;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.125rem;
    box-shadow: var(--shadow-medium);
}

.btn-cta:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-heavy);
    color: var(--primary-color);
    text-decoration: none;
}

/* Comprehensive Responsive Design */

/* Large Tablets and Small Laptops */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        gap: 60px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .featured-cards-grid,
    .categories-grid,
    .latest-cards-grid,
    .companies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .stats-cards-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .search-filter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .hero-stat-item {
        padding: 16px 12px;
    }
    
    .hero-stat-number {
        font-size: 1.5rem;
    }
    
    .hero-stat-label {
        font-size: 0.8rem;
    }
    
    .featured-cards-grid,
    .categories-grid,
    .latest-cards-grid,
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .card-content {
        padding: 20px;
    }
    
    .card-actions {
        padding: 0 20px 20px;
        flex-direction: column;
        gap: 12px;
    }
    
    .card-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .search-filter-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .search-filter-card {
        padding: 16px;
    }
    
    .results-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .results-meta {
        justify-content: center;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .opportunity-card {
        padding: 16px;
    }
    
    .opportunity-highlights {
        flex-direction: column;
        gap: 8px;
    }
    
    .company-card {
        padding: 20px;
    }
    
    .company-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .company-stats .stat {
        text-align: center;
    }
    
    .no-companies-actions,
    .no-results-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .no-companies-actions .btn,
    .no-results-actions .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .cta-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cta-action-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-action-content .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.4;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .hero-stat-item {
        padding: 12px 8px;
    }
    
    .hero-stat-number {
        font-size: 1.25rem;
    }
    
    .hero-stat-label {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .card-content {
        padding: 16px;
    }
    
    .card-actions {
        padding: 0 16px 16px;
    }
    
    .search-filter-card {
        padding: 12px;
        margin-bottom: 20px;
    }
    
    .form-control,
    .form-select {
        padding: 10px 12px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .opportunity-card {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .company-card {
        padding: 16px;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .company-info h4 {
        font-size: 1.1rem;
    }
    
    .company-location {
        font-size: 0.8rem;
    }
    
    .company-stats .stat {
        font-size: 0.7rem;
        padding: 0.4rem 0.6rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item {
        margin-right: 8px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.9rem;
    }
    
    .btn-primary-large {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-card {
        padding: 20px;
    }
    
    .cta-title {
        font-size: 1.5rem;
    }
    
    .cta-subtitle {
        font-size: 0.9rem;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .card-content {
        padding: 12px;
    }
    
    .opportunity-card {
        padding: 10px;
    }
    
    .company-card {
        padding: 12px;
    }
    
    .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
}

/* Landscape Mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero-section::before {
        background-size: 10px 10px;
    }
    
    .about-section::before {
        background-size: 10px 10px;
    }
}

/* Hide Hero Visual Section on Mobile and Tablet */
@media (max-width: 1024px) {
    .hero-visual-content {
        display: none !important;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }
    
    .hero-text-content {
        max-width: 100% !important;
    }
}

/* Form Responsive Design */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-control,
    .form-select {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 0.75rem 1rem;
    }
    
    .form-check {
        margin-bottom: 0.75rem;
    }
    
    .form-check-label {
        font-size: 0.9rem;
    }
    
    .alert {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .modal-dialog {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .modal-content {
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-footer {
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .modal-footer .btn {
        width: 100%;
    }
}

/* Footer Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section ul {
        list-style: none;
        padding: 0;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 1rem 0;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* Utility Classes for Responsive Design */
@media (max-width: 768px) {
    .d-mobile-none {
        display: none !important;
    }
    
    .d-mobile-block {
        display: block !important;
    }
    
    .text-mobile-center {
        text-align: center !important;
    }
    
    .mb-mobile-3 {
        margin-bottom: 1rem !important;
    }
    
    .p-mobile-2 {
        padding: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .d-xs-none {
        display: none !important;
    }
    
    .d-xs-block {
        display: block !important;
    }
    
    .text-xs-center {
        text-align: center !important;
    }
    
    .mb-xs-2 {
        margin-bottom: 0.75rem !important;
    }
    
    .p-xs-1 {
        padding: 0.5rem !important;
    }
}

/* Additional button styles */
.btn-success {
    background: var(--gradient-teal);
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
    color: white;
    box-shadow: var(--shadow-teal);
}

.btn-warning {
    background: linear-gradient(135deg, var(--warning-color), #f1c40f);
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 600;
}

/* Enhanced Contact Information Styles */
.contact-info-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 1px solid rgba(30, 58, 95, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(30, 58, 95, 0.08);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #008080, #00b3b3);
}

.contact-info-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: rgba(30, 58, 95, 0.15);
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #008080, #00b3b3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.contact-info-icon i {
    color: white !important;
}

.contact-info-content {
    flex: 1;
    min-width: 0;
}

.contact-info-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.contact-info-value {
    margin-bottom: 6px;
}

.contact-info-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1e3a5f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 4px 0;
}

.contact-info-link:hover {
    color: #008080;
    transform: translateX(6px);
}

.contact-info-link i {
    font-size: 0.9rem;
    color: #008080;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.contact-info-link:hover i {
    opacity: 1;
    transform: translateX(2px);
}

.contact-info-note {
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
    font-weight: 500;
}

.contact-info-actions {
    border-top: 1px solid rgba(30, 58, 95, 0.1);
    padding-top: 28px;
    margin-top: 8px;
}

.contact-action-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-contact-primary {
    background: linear-gradient(135deg, #008080, #00b3b3);
    border: none;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
    text-decoration: none;
}

.btn-contact-primary:hover {
    background: linear-gradient(135deg, #006666, #008080);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.4);
    color: white;
    text-decoration: none;
}

.btn-contact-secondary {
    background: white;
    border: 2px solid #1e3a5f;
    color: #1e3a5f;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-contact-secondary:hover {
    background: #1e3a5f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 95, 0.2);
    text-decoration: none;
}

/* Responsive Design for Contact Info */
@media (max-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-item {
        padding: 20px;
        gap: 16px;
    }
    
    .contact-info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }
    
    .contact-info-link {
        font-size: 1rem;
    }
    
    .contact-action-buttons {
        flex-direction: column;
    }
    
    .btn-contact-primary,
    .btn-contact-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-info-item {
        padding: 16px;
        gap: 12px;
    }
    
    .contact-info-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .contact-info-link {
        font-size: 0.95rem;
    }
}

/* Responsive Opportunity Cards */
@media (max-width: 768px) {
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .opportunity-card .card-body {
        padding: 16px;
    }
    
    .opportunity-card .card-footer {
        padding: 0 16px 16px;
    }
    
    .opportunity-card .job-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .opportunities-grid {
        gap: 16px;
    }
    
    .opportunity-card .card-body {
        padding: 14px;
    }
    
    .opportunity-card .card-footer {
        padding: 0 14px 14px;
    }
    
    .opportunity-card .job-title {
        font-size: 1rem;
    }
    
    .opportunity-card .company-name {
        font-size: 0.9rem;
    }
}

/* Footer Contact Information Styles */
.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 95, 0.08);
}

.footer-contact-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.footer-contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #008080, #00b3b3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 128, 128, 0.3);
}

.footer-contact-icon i {
    color: white !important;
}

.footer-contact-text {
    color: #1e3a5f;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item:hover .footer-contact-text {
    color: #008080;
}

/* Responsive Footer Contact */
@media (max-width: 768px) {
    .footer-contact-item {
        padding: 14px;
        gap: 14px;
    }
    
    .footer-contact-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }
    
    .footer-contact-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .footer-contact-item {
        padding: 12px;
        gap: 12px;
    }
    
    .footer-contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .footer-contact-text {
        font-size: 0.9rem;
    }
}

/* Professional Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.4rem;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: white !important;
    transform: translateY(-1px);
}

.navbar-logo {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
    margin-right: 12px;
    color: white;
}

.brand-text {
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.navbar-nav {
    margin-left: 2rem;
    align-items: center;
    display: flex;
    flex-direction: row;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
    height: 44px;
    background: transparent;
    border: 1px solid transparent;
}

.navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar-nav .nav-link.active {
    color: white !important;
}

.navbar-nav .nav-link i {
    font-size: 1rem;
    color: white;
    opacity: 0.9;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 16px;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
    text-align: center;
}

.navbar-nav .nav-link:hover i {
    opacity: 1;
    color: white;
    transform: scale(1.05);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}

/* Dropdown Styles */
.dropdown-toggle::after {
    border-top-color: white;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.dropdown-toggle:hover::after {
    border-top-color: white;
    opacity: 1;
    transform: rotate(180deg);
}

.dropdown-menu {
    background: rgba(30, 58, 95, 0.95);
    backdrop-filter: blur(15px);
    border: none;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    margin-top: 8px;
    padding: 8px 0;
    min-width: 200px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1001;
    display: none;
}

.dropdown-menu.show {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
}

/* Ensure dropdowns work on desktop */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .dropdown-menu {
        transition: all 0.3s ease;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
    }
}

.dropdown {
    position: relative;
}

.dropdown-item {
    color: white !important;
    padding: 12px 20px;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white !important;
    transform: translateX(8px);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
    margin-right: 8px;
    opacity: 0.8;
}

/* Navigation Responsive Design */
@media (max-width: 768px) {
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav {
        text-align: center;
        margin-top: 1rem;
        margin-left: 0;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .navbar-nav .nav-item {
        margin: 0;
        width: 100%;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        color: white !important;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-radius: 0;
        margin: 0;
        height: auto;
        justify-content: flex-start;
    }
    
    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white !important;
        transform: none;
    }
    
    .navbar-nav .nav-link.active {
        background: rgba(255, 255, 255, 0.15);
        color: white !important;
        border-right: 3px solid #00b3b3;
        box-shadow: none;
    }
    
    /* Ensure dropdown menus are properly positioned */
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0.5rem;
        border-radius: 8px;
        background: rgba(30, 58, 95, 0.95);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    }
    
    .dropdown-item {
        color: white !important;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 0.75rem 1.5rem;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.15);
        color: white !important;
        transform: translateX(5px);
    }
    

    
    .navbar-toggler {
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.5rem 0.75rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .navbar-toggler:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.5);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
        outline: none;
    }
    
    .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }
    
    /* Improve dropdown toggle visibility */
    .dropdown-toggle::after {
        border-top-color: white;
        opacity: 0.8;
    }
    
    .dropdown-toggle:hover::after {
        border-top-color: white;
        opacity: 1;
    }
    
    /* Ensure dropdown menu is always visible when open */
    .dropdown-menu.show {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}

@media (max-width: 480px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .dropdown-item {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        color: white !important;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
    }
    
    .dropdown-menu {
        background: rgba(30, 58, 95, 0.98);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin-top: 10px;
    }
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(30, 58, 95, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-content .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--light-text);
    line-height: 1.6;
    font-weight: 500;
}

.about-content p {
    color: var(--light-text);
    line-height: 1.6;
    font-size: 1.1rem;
}

.about-features {
    margin-top: 40px;
}

.about-features .feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 24px;
    background: var(--light-bg);
    border-radius: 16px;
    transition: var(--transition);
    border: 1px solid rgba(30, 58, 95, 0.05);
}

.about-features .feature-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    background: white;
}

.about-features .feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-teal);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    flex-shrink: 0;
    box-shadow: var(--shadow-teal);
}

.about-features .feature-content h5 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
}

.about-features .feature-content p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

.about-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.about-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    max-width: 500px;
    width: 100%;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.vision-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.vision-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-teal);
}

.vision-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.95;
    font-weight: 500;
}

.vision-quote {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
}

.vision-quote i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.6);
    position: absolute;
    top: -10px;
    left: 20px;
}

.vision-quote p {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    font-style: italic;
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Responsive design for about section */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    /* Search section responsive */
    .search-inputs {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .search-tabs {
        flex-direction: column;
        gap: 4px;
    }
    
    .search-tab {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    .search-container {
        padding: 20px;
        margin: 20px 0;
    }
    
    .popular-searches {
        justify-content: center;
        text-align: center;
    }
    
    /* Privacy Policy responsive */
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    .page-hero-meta {
        flex-direction: column;
        gap: 12px;
    }
    
    .privacy-content {
        padding: 32px 24px;
    }
    
    .section-title {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .privacy-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .contact-info {
        text-align: left;
    }
    
    .contact-item {
        justify-content: flex-start;
    }
    
    /* Enhanced Contact page responsive */
    .contact-hero-section {
        padding: 60px 0;
    }
    
    .contact-hero-title {
        font-size: 2.5rem;
    }
    
    .contact-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-item {
        display: flex;
        align-items: center;
        gap: 16px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .contact-visual-card {
        padding: 30px 20px;
    }
    
    .contact-visual-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .contact-content {
        padding: 32px 24px;
    }
    
    .form-progress {
        flex-direction: column;
        gap: 16px;
    }
    
    .progress-step {
        flex-direction: row;
        gap: 12px;
    }
    
    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .form-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .contact-form {
        padding: 24px;
    }
    
    .contact-sidebar {
        position: static;
        margin-top: 40px;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-button {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .social-links {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .social-link {
        flex: 1;
        min-width: 120px;
        justify-content: center;
    }
    
    /* Success Message */
    .success-message {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        animation: fadeIn 0.3s ease;
    }
    
    .success-content {
        background: white;
        border-radius: 20px;
        padding: 40px;
        text-align: center;
        max-width: 400px;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        animation: slideUp 0.3s ease;
    }
    
    .success-content i {
        font-size: 4rem;
        color: var(--success-color);
        margin-bottom: 20px;
    }
    
    .success-content h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 16px;
        color: var(--dark-text);
    }
    
    .success-content p {
        color: var(--light-text);
        margin-bottom: 24px;
        line-height: 1.6;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    @keyframes slideUp {
        from { 
            opacity: 0;
            transform: translateY(30px);
        }
        to { 
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-logo {
        height: 32px;
    }
    
    .brand-text {
        font-size: 1.2rem;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .hero-logo {
        height: 16px;
    }
    
    .section-logo {
        height: 14px;
    }
    
    .about-content .section-title {
        font-size: 2rem;
    }
    
    .about-content .lead {
        font-size: 1.1rem;
    }
    
    .about-features .feature-item {
        padding: 20px;
        margin-bottom: 24px;
    }
    
    .about-features .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .about-card {
        padding: 30px 24px;
        margin-top: 40px;
    }
    
    .vision-content h3 {
        font-size: 1.75rem;
    }
    
    .vision-text {
        font-size: 1rem;
    }
    
    .vision-quote p {
        font-size: 1rem;
    }
}

/* Premium Statistics Section - Professional UI */
.premium-stats-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(0, 128, 128, 0.1);
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
}

.premium-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 128, 128, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.03) 0%, transparent 50%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="rgba(0,0,0,0.02)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.8;
}

.premium-stats-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 128, 128, 0.2), transparent);
}

.stats-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-badge {
    display: inline-block;
    margin-bottom: 24px;
}

.badge-content {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.25);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.badge-content::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.6s ease;
}

.badge-content:hover::before {
    left: 100%;
}

.stats-title {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stats-description {
    font-size: 1.375rem;
    color: #2d3748;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 500;
    opacity: 0.9;
}

.stats-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 100px;
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card.premium {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 28px;
    padding: 48px 36px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(30, 58, 95, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(0, 128, 128, 0.08);
    backdrop-filter: blur(10px);
}

.stat-card.premium:hover {
    transform: translateY(-16px) scale(1.03);
    box-shadow: 
        0 32px 80px rgba(0, 0, 0, 0.12),
        0 16px 48px rgba(30, 58, 95, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(0, 128, 128, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.02), rgba(0, 128, 128, 0.02));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card.premium:hover .card-background {
    opacity: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.stat-icon-wrapper {
    position: relative;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: white;
    position: relative;
    z-index: 2;
    box-shadow: 
        0 16px 48px rgba(30, 58, 95, 0.25),
        0 8px 24px rgba(0, 128, 128, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
}

.icon-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card.premium:hover .icon-circle {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 
        0 24px 64px rgba(30, 58, 95, 0.3),
        0 12px 32px rgba(0, 128, 128, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.stat-card.premium:hover .icon-glow {
    opacity: 1;
}

.stat-info {
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 28px 24px;
    border-radius: 20px;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 128, 128, 0.08);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #1e3a5f, #008080, #1e3a5f);
    opacity: 0.6;
}

.stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: black;
    margin-bottom: 16px;
    line-height: 0.9;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    letter-spacing: -2px;
    position: relative;
    z-index: 2;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.9) 100%);
    padding: 8px 16px;
    border-radius: 24px;
    display: inline-block;
    border: 1px solid rgba(0, 128, 128, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.stat-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.metric-bar {
    width: 100%;
    height: 6px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.metric-fill {
    height: 100%;
    background: var(--gradient-teal);
    border-radius: 3px;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.metric-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.metric-text {
    font-size: 0.875rem;
    color: #1e3a5f;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    padding: 6px 12px;
    border-radius: 16px;
    display: inline-block;
    border: 1px solid rgba(0, 128, 128, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    position: relative;
    z-index: 2;
}

/* Stats Highlight Section */
.stats-highlight-section {
    position: relative;
    z-index: 2;
}

.highlight-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 32px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.3);
}

.highlight-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.highlight-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.highlight-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.highlight-text {
    flex: 1;
    color: white;
}

.highlight-text h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.highlight-text p {
    font-size: 1.125rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.highlight-action {
    flex-shrink: 0;
}

.btn-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
}

.btn-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 58, 95, 0.1), transparent);
    transition: left 0.6s ease;
}

.btn-premium:hover::before {
    left: 100%;
}

.btn-premium:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-premium i {
    transition: transform 0.3s ease;
}

.btn-premium:hover i {
    transform: translateX(4px);
}

/* Featured opportunities */
.featured-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.section-subtitle {
    text-align: center;
    color: var(--light-text);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

/* Opportunity cards */
.opportunity-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--accent-color);
}

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

.featured-card {
    border-left: 4px solid var(--success-color);
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

.card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 10px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
}

.organization-name {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.1);
}

.opportunity-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--light-text);
    font-size: 0.9rem;
    font-weight: 500;
}

.opportunity-description {
    color: var(--light-text);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Categories section */
.categories-section {
    padding: 80px 0;
    background: white;
}

.category-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 1;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.category-description {
    opacity: 0.95;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* CTA section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: black;
    padding: 80px 0;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
/* Professional Footer Styles */
.footer {
    background: #1e3a5f;
    color: white;
    padding: 60px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.95rem;
}

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

.footer-social .social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social .social-link:hover {
    background: #20c997;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #20c997;
    transform: translateX(4px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: #20c997;
    width: 16px;
    text-align: center;
}

.footer-newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.footer-newsletter {
    display: flex;
    gap: 8px;
    max-width: 280px;
}

.footer-email-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-email-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.footer-email-input:focus {
    outline: none;
    border-color: #20c997;
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.1);
}

.footer-newsletter-btn {
    padding: 12px 16px;
    background: #1e3a5f;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
}

.footer-newsletter-btn:hover {
    background: #20c997;
    border-color: #20c997;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.3);
}

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

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #20c997;
}

.admin-link {
    color: #20c997 !important;
}

.admin-link:hover {
    color: #1a9d7a !important;
}

/* Footer Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 30px;
    }
    
    .footer-section:last-child {
        grid-column: 1 / -1;
        margin-top: 20px;
    }
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        max-width: none;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-brand {
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .footer-contact-info {
        align-items: center;
    }
    
    .footer-contact-item {
        justify-content: center;
    }
    
    .footer-newsletter {
        justify-content: center;
        max-width: none;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 30px 0 0;
    }
    
    .footer-content {
        gap: 24px;
    }
    
    .footer-social {
        gap: 8px;
    }
    
    .footer-social .social-link {
        width: 36px;
        height: 36px;
    }
    
    .footer-newsletter {
        flex-direction: column;
        gap: 12px;
    }
    
    .footer-email-input {
        width: 100%;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 12px;
    }
}

.footer-title {
    display: flex;
    align-items: center;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-logo {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-social {
    display: flex;
    gap: 16px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.footer-social .social-link:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-teal);
}

.footer-social .social-link i {
    font-size: 1.1rem;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding: 12px 16px;
    background: rgba(240, 248, 250, 0.95);
    border-radius: 12px;
    transition: all 0.3s ease;
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.98);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #008080, #00b3b3);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 128, 128, 0.2);
}

.contact-icon i {
    color: #1e3a5f;
    font-size: 1rem;
}

.contact-text {
    color: #1e3a5f;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.4;
}

.footer-newsletter .input-group {
    max-width: 300px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: white;
}

.admin-link {
    color: var(--accent-color) !important;
    font-weight: 500;
}

.admin-link:hover {
    color: var(--secondary-color) !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .premium-stats-section {
        padding: 80px 0;
    }
    
    .stats-title {
        font-size: 2.5rem;
    }
    
    .stats-description {
        font-size: 1.1rem;
    }
    
    .stats-cards-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }
    
    .stat-card.premium {
        padding: 32px 24px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .icon-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .highlight-card {
        padding: 40px 24px;
        border-radius: 24px;
    }
    
    .highlight-content {
        flex-direction: column;
        gap: 32px;
        text-align: center;
    }
    
    .highlight-text h3 {
        font-size: 1.75rem;
    }
    
    .highlight-text p {
        font-size: 1rem;
    }
    
    .highlight-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .category-card {
        padding: 30px 20px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 20px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        margin-top: 16px;
    }
    
    .footer-social .social-link {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }
    
    .footer-social .social-link i {
        font-size: 1rem;
    }
    
    /* Ensure social links don't overflow on very small screens */
    @media (max-width: 480px) {
        .footer-social {
            gap: 8px;
        }
        
        .footer-social .social-link {
            width: 36px;
            height: 36px;
        }
        
        .footer-social .social-link i {
            font-size: 0.9rem;
        }
    }
}

/* View opportunity page styles */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    opacity: 0.95;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
}

.hero-badge .badge {
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 25px;
}

.text-gradient {
    background: linear-gradient(135deg, #008080, #00b3b3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-visual {
    position: relative;
    z-index: 10;
}

.hero-icon-wrapper {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-icon {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    margin-bottom: 5px;
}

.stat-label {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 600;
}

/* View opportunity specific styles */
.opportunity-badges {
    margin-bottom: 20px;
}

.opportunity-badges .badge {
    margin-right: 10px;
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.hero-highlights {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.highlight-item i {
    width: 16px;
    color: #008080;
}

.content-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.card-header-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1.5rem 2rem;
    position: relative;
}

.card-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.25px;
    position: relative;
    z-index: 1;
}

.card-title i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 2rem;
}

.description-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
}

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

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.detail-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.detail-content p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #008080;
    font-size: 1.2rem;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-content h6 {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.contact-content p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.9rem;
}

.contact-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-content a:hover {
    text-decoration: underline;
}

.attachment-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.attachment-item:hover {
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.attachment-icon {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.attachment-details h6 {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.attachment-details p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.9rem;
}

.attachment-details a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.attachment-details a:hover {
    text-decoration: underline;
}

.sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-bottom: 30px;
}

.sidebar-card .card-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.sidebar-card .card-title {
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.quick-actions {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-actions li {
    margin-bottom: 0.5rem;
}

.quick-actions a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--dark-text);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.quick-actions a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    transform: translateX(5px);
}

.quick-actions i {
    width: 16px;
    text-align: center;
}

.opportunity-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opportunity-info li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.info-label {
    color: var(--dark-text);
    font-weight: 600;
}

.info-value {
    color: var(--primary-color);
    font-weight: 700;
}

.share-section {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 30px;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.whatsapp {
    background: #25d366;
}

.copy-link-btn {
    background: var(--dark-text);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-link-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.related-opportunities {
    margin-top: 60px;
}

.related-opportunity-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-left: 4px solid var(--accent-color);
}

.related-opportunity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.related-opportunity-card .opportunity-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.related-opportunity-card .organization-name {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.related-opportunity-card .opportunity-meta {
    gap: 10px;
    margin-bottom: 0.75rem;
}

.related-opportunity-card .meta-item {
    font-size: 0.8rem;
}

.related-opportunity-card .opportunity-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 2rem;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.breadcrumb-link i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.breadcrumb-link:hover {
    color: white;
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Career opportunities page styles */
.opportunities-hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.opportunities-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
}

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

.hero-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.hero-stat-number {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.hero-stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.search-filter-section {
    background: white;
    padding: 40px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.search-filter-card {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.form-label {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.form-control, .form-select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

.results-section {
    padding: 60px 0;
    background: var(--light-bg);
}

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

.section-subtitle {
    color: var(--light-text);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.results-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.no-results-section {
    text-align: center;
    padding: 60px 0;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 1rem;
}

.no-results-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
}

.no-results-subtitle {
    color: var(--light-text);
    margin-bottom: 2rem;
}

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

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

.opportunity-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-left: 4px solid var(--accent-color);
    position: relative;
    overflow: hidden;
}

.opportunity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.05), rgba(52, 73, 94, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.opportunity-card:hover::before {
    opacity: 1;
}

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

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

.card-meta {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.featured-badge {
    background: linear-gradient(135deg, var(--warning-color), #f1c40f);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.opportunity-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.organization-name {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.opportunity-highlights {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--light-text);
    font-size: 0.9rem;
}

.highlight-item i {
    width: 14px;
    color: var(--primary-color);
}

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

.card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

.card-meta small {
    color: var(--light-text);
    font-size: 0.8rem;
}

/* Admin dropdown styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 200px;
}

.dropdown-header {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
}

.dropdown-item {
    padding: 0.75rem 1rem;
    color: var(--dark-text);
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
}

.dropdown-item i {
    width: 16px;
    text-align: center;
}

.dropdown-divider {
    margin: 0.5rem 0;
    border-color: rgba(0, 0, 0, 0.1);
}

/* Career Opportunities Page Specific Styles */

/* Search Filter Section */
.search-filter-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.search-filter-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-filter-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 24px;
    align-items: end;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.form-control, .form-select {
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(30, 58, 95, 0.15);
    outline: none;
}

/* Results Section */
.results-section {
    padding: 80px 0;
    background: white;
}

.results-header {
    margin-bottom: 60px;
}

.results-header-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

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

.results-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.results-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* No Results Section */
.no-results-section {
    text-align: center;
    padding: 80px 0;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--light-text);
    margin-bottom: 24px;
    opacity: 0.5;
}

.no-results-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 16px;
}

.no-results-subtitle {
    color: var(--light-text);
    margin-bottom: 32px;
    line-height: 1.6;
}

.no-results-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Modern Opportunities Grid */
.opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.opportunity-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 58, 95, 0.05);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(30, 58, 95, 0.1);
}

.opportunity-card.featured {
    border: 2px solid #ff8c00;
    position: relative;
}

.opportunity-card.featured::before {
    content: 'Featured';
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff8c00;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

/* Modern Card Header */
.opportunity-card .card-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    padding: 16px 20px;
    position: relative;
}

.opportunity-card .card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 179, 179, 0.9);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.opportunity-card .card-badge i {
    font-size: 0.9rem;
}

/* Modern Card Body */
.opportunity-card .card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.opportunity-card .job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
    line-height: 1.3;
}

.opportunity-card .company-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.opportunity-card .company-name i {
    color: #008080;
    font-size: 0.9rem;
}

.opportunity-card .location-tag {
    display: inline-block;
    background: rgba(0, 179, 179, 0.1);
    color: #008080;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 179, 179, 0.2);
}

.opportunity-card .job-description {
    color: #64748b;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex: 1;
}

.opportunity-card .job-description p {
    margin: 0;
}

/* Modern Card Footer */
.opportunity-card .card-footer {
    padding: 0 20px 20px;
}

.opportunity-card .view-details-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: linear-gradient(135deg, #1e3a5f, #008080);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.opportunity-card .view-details-btn:hover {
    background: linear-gradient(135deg, #008080, #1e3a5f);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
    color: white;
    text-decoration: none;
}

.opportunity-card .view-details-btn i {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 6px;
    border-radius: 50%;
}

.opportunity-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.organization-name {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.opportunity-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--light-text);
    font-size: 0.85rem;
}

.highlight-item i {
    width: 14px;
    color: var(--primary-color);
}

.opportunity-description {
    margin-bottom: 20px;
    flex: 1;
}

.opportunity-description p {
    color: var(--light-text);
    line-height: 1.5;
    font-size: 0.9rem;
    margin: 0;
}

.card-actions {
    padding: 0 24px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.action-buttons {
    display: flex;
    gap: 12px;
    flex: 1;
}

.time-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light-text);
    font-size: 0.8rem;
    white-space: nowrap;
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 24px;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.breadcrumb-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.breadcrumb-link:hover {
    color: white;
    text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.8);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Button Fixes */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1;
}

.btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    color: white;
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.btn-cta:hover {
    color: var(--primary-color);
    box-shadow: var(--shadow-heavy);
}

/* View Opportunity Page Specific Styles */

/* Content Section */
.content-section {
    padding: 80px 0;
    background: var(--light-bg);
}

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

.main-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Content Cards */
.content-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card-header-section {
    background: var(--gradient-primary);
    color: white;
    padding: 24px 32px;
    position: relative;
}

.card-header-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    pointer-events: none;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    letter-spacing: -0.25px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-title i {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.card-content {
    padding: 32px;
}

/* Description Content */
.description-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-text);
}

/* Details Grid */
.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    width: 50px;
    height: 50px;
    background: transparent;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.detail-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.detail-content p {
    color: var(--light-text);
    margin: 0;
    line-height: 1.5;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.contact-item:hover {
    background: white;
    box-shadow: var(--shadow-light);
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: transparent;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-content h6 {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.contact-content p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.9rem;
}

.contact-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--secondary-color);
}

/* Attachment Item */
.attachment-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 12px;
    transition: var(--transition);
}

.attachment-item:hover {
    background: white;
    box-shadow: var(--shadow-light);
}

.attachment-icon {
    font-size: 2rem;
    color: var(--primary-color);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.attachment-details h6 {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.attachment-details p {
    color: var(--light-text);
    margin: 0;
    font-size: 0.9rem;
}

/* Sidebar Cards */
.sidebar-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sidebar-card .card-header-section {
    padding: 20px 24px;
}

.sidebar-card .card-title {
    font-size: 1.25rem;
}

.sidebar-card .card-content {
    padding: 24px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Opportunity Info */
.opportunity-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.info-label {
    color: var(--dark-text);
    font-weight: 600;
}

.info-value {
    color: var(--primary-color);
    font-weight: 700;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--warning-color);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    border: none;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
}

.share-btn:hover {
    transform: translateY(-2px);
    color: white;
    text-decoration: none;
}

.share-btn.facebook {
    background: #1877f2;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.copy-link-btn {
    background: var(--dark-text);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.copy-link-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

/* Related Opportunities Section */
.related-opportunities-section {
    padding: 80px 0;
    background: white;
}

.related-opportunities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.related-opportunity-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.related-opportunity-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.related-opportunity-card .card-header-section {
    padding: 16px 20px;
}

.related-opportunity-card .card-content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.related-opportunity-card .opportunity-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    line-height: 1.3;
}

.related-opportunity-card .organization-name {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 0.85rem;
}

.related-opportunity-card .opportunity-highlights {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    flex: 1;
}

.related-opportunity-card .highlight-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--light-text);
    font-size: 0.8rem;
}

.related-opportunity-card .highlight-item i {
    width: 12px;
    color: var(--primary-color);
}

/* Featured Indicator */
.featured-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-top: 16px;
}

/* Responsive optimizations */
@media (max-width: 768px) {
    .search-filter-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .results-header-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .results-meta {
        justify-content: center;
    }
    
    .opportunities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
    
    .no-results-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-results-actions .btn {
        width: 100%;
        max-width: 200px;
    }
    
    /* View Opportunity Responsive */
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .related-opportunities-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .sidebar-card .card-content {
        padding: 20px;
    }
    
    .share-buttons {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

/* Company System Styles */

/* Company Registration Page */
.company-register-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.company-register-section {
    padding: 80px 0;
    background: #f8fafc;
}

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

.register-header {
    text-align: center;
    margin-bottom: 60px;
}

.register-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.register-header p {
    font-size: 1.125rem;
    color: #4a5568;
}

.company-register-form {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.form-section {
    background: #f8fafc;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.08);
}

.form-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section h3 i {
    color: #008080;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: #008080;
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
}

.form-control.error {
    border-color: #e53e3e;
}

.form-group small {
    display: block;
    margin-top: 4px;
    font-size: 0.875rem;
    color: #718096;
}

.current-file {
    margin-bottom: 16px;
    text-align: center;
}

.current-file p {
    margin-top: 8px;
    font-size: 0.875rem;
    color: #718096;
}

.form-actions {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
}

/* Company Registration Messages */
.company-register-form .success-message {
    position: static;
    background: #d4edda;
    color: #155724;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #c3e6cb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-register-form .error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid #f5c6cb;
    display: flex;
    align-items: center;
    gap: 12px;
}

.company-register-form .success-message i,
.company-register-form .error-message i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Company Login Page */
.company-login-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.company-login-section {
    padding: 80px 0;
    background: #f8fafc;
}

.login-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.login-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.login-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.login-header p {
    color: #718096;
}

.input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.input-group i {
    position: absolute;
    left: 16px;
    color: #718096;
    z-index: 2;
}

.input-group .form-control {
    padding-left: 48px;
}

.input-group.focused i {
    color: #008080;
}

.login-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #e2e8f0;
}

.login-footer p {
    margin-bottom: 12px;
}

.link-primary {
    color: #008080;
    text-decoration: none;
    font-weight: 600;
}

.link-primary:hover {
    text-decoration: underline;
}

.link-secondary {
    color: #718096;
    text-decoration: none;
}

.link-secondary:hover {
    color: #008080;
}

.login-features {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.login-features h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 32px;
    text-align: center;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 128, 0.08);
}

.feature-item i {
    font-size: 1.5rem;
    color: #008080;
    margin-top: 4px;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.feature-item p {
    color: #718096;
    line-height: 1.6;
}

/* Company Dashboard */
.dashboard-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.dashboard-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 32px;
}

.company-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.company-logo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.company-logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.company-details h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-meta {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.company-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.dashboard-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    position: relative;
}

.dashboard-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(0,128,128,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
}

.stat-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(0, 128, 128, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 128, 128, 0.4);
}

.stat-content h3 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e3a5f;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-content p {
    color: #4a6b8a;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dashboard-content {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    position: relative;
}

.dashboard-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(0,128,128,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.dashboard-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.dashboard-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.dashboard-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 128, 128, 0.2);
}

.card-header {
    background: #184866;
    color: white;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.card-header .btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.card-header .btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

.card-content {
    padding: 32px;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.card-header {
    padding: 24px 32px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #184866;
    color: white;
}

.card-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-header h3 i {
    color: #008080;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.875rem;
    border-radius: 8px;
}

.btn-outline {
    background: transparent;
    border: 2px solid #008080;
    color: #008080;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline:hover {
    background: #008080;
    color: white;
}

.card-content {
    padding: 40px;
}

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

.job-item {
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    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(135deg, #1e3a5f 0%, #008080 100%);
}

.job-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 128, 128, 0.2);
}

.job-info h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.job-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.job-type, .job-location {
    background: rgba(0, 128, 128, 0.1);
    color: #008080;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-approved {
    background: rgba(34, 197, 94, 0.1);
    color: #16a34a;
}

.status-pending {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.status-rejected {
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
}

.job-date {
    color: #4a6b8a;
    font-size: 0.9rem;
    font-weight: 500;
}

.job-actions {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.job-actions .btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.job-actions .btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    border: none;
}

.job-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

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

.job-actions .btn-outline:hover {
    background: #008080;
    color: white;
    transform: translateY(-2px);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #4a6b8a;
}

.empty-state i {
    font-size: 4rem;
    margin-bottom: 24px;
    opacity: 0.5;
}

.empty-state h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.empty-state p {
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.empty-state .btn {
    padding: 12px 24px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.empty-state .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.3);
}

.job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    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(135deg, #1e3a5f 0%, #008080 100%);
}

.job-item:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 128, 128, 0.2);
}

.job-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.job-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.job-type, .job-location {
    background: #e2e8f0;
    color: #4a5568;
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.job-status {
    padding: 4px 8px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-approved {
    background: #c6f6d5;
    color: #22543d;
}

.status-pending {
    background: #fef5e7;
    color: #744210;
}

.status-rejected {
    background: #fed7d7;
    color: #742a2a;
}

.job-date {
    font-size: 0.875rem;
    color: #718096;
}

.job-actions {
    display: flex;
    gap: 8px;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #718096;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #cbd5e0;
}

.empty-state h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #4a5568;
}

.empty-state p {
    margin-bottom: 24px;
}

.quick-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.action-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
}

.action-item:hover {
    background: white;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 128, 128, 0.2);
}

.action-item i {
    font-size: 1.75rem;
    color: #008080;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.1) 0%, rgba(0, 179, 179, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.action-item:hover i {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.2) 0%, rgba(0, 179, 179, 0.2) 100%);
}

.action-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}

.action-item p {
    color: #718096;
    font-size: 0.875rem;
}

.profile-summary {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 128, 128, 0.08);
    transition: all 0.3s ease;
}

.profile-item:hover {
    background: white;
    border-color: rgba(0, 128, 128, 0.15);
    transform: translateX(4px);
}

.profile-item label {
    font-weight: 700;
    color: #1e3a5f;
    font-size: 0.95rem;
}

.profile-item span {
    color: #4a6b8a;
    font-weight: 600;
}

.profile-item a {
    color: #008080;
    text-decoration: none;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    background: rgba(0, 128, 128, 0.1);
    transition: all 0.3s ease;
}

.profile-item a:hover {
    background: rgba(0, 128, 128, 0.2);
    transform: scale(1.05);
}

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

.activity-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.activity-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
}

.activity-item:hover {
    background: white;
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 128, 128, 0.15);
}

.activity-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
}

.activity-item:hover .activity-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 128, 128, 0.4);
}

.activity-content p {
    margin-bottom: 6px;
    color: #1e3a5f;
    font-weight: 600;
    font-size: 1rem;
}

.activity-time {
    font-size: 0.9rem;
    color: #4a6b8a;
    font-weight: 500;
}

/* Company Profile Page */
.profile-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    padding: 60px 0;
}

.profile-hero {
    max-width: 1200px;
    margin: 0 auto;
}

.profile-banner {
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
}

.profile-banner-placeholder {
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    margin-bottom: -60px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.profile-info {
    display: flex;
    align-items: flex-end;
    gap: 24px;
    position: relative;
    z-index: 2;
}

.profile-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 4px solid white;
    overflow: hidden;
    background: white;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #718096;
}

.profile-details h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.profile-actions {
    margin-top: 20px;
}

.profile-content {
    padding: 60px 0;
    background: #f8fafc;
}

.profile-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.profile-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.08);
    overflow: hidden;
}

.profile-form {
    padding: 32px;
}

.profile-form .form-grid {
    grid-template-columns: 1fr;
    gap: 32px;
}

.profile-form .form-section {
    background: white;
    border: 1px solid #e2e8f0;
}

.profile-form .form-section h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 20px;
}

.profile-preview {
    padding: 32px;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.preview-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

.preview-logo-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #718096;
}

.preview-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 4px;
}

.preview-info p {
    color: #718096;
    font-size: 0.875rem;
}

.preview-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e3a5f;
    margin-bottom: 12px;
    margin-top: 20px;
}

.preview-content p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 16px;
}

.preview-details {
    list-style: none;
    padding: 0;
    margin: 0;
}

.preview-details li {
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: space-between;
}

.preview-details li:last-child {
    border-bottom: none;
}

.preview-details strong {
    color: #4a5568;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: scale(1.1);
}

/* Company System Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .login-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .dashboard-hero {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .company-meta {
        justify-content: center;
    }
    
    .dashboard-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-grid {
        grid-template-columns: 1fr;
    }
    
    .profile-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .job-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .job-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

/* Professional Form Styles */
.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.form-section {
    padding: 48px;
    border-bottom: 1px solid rgba(0, 128, 128, 0.1);
    position: relative;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
}

.form-section:last-child {
    border-bottom: none;
}

.form-section h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-section h3 i {
    color: #008080;
    font-size: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 128, 128, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-control:focus {
    outline: none;
    border-color: #008080;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

.form-control.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-actions {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    align-items: center;
    padding: 32px 48px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border-top: 1px solid rgba(0, 128, 128, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.4);
}

.btn-secondary {
    background: white;
    color: #1e3a5f;
    border: 2px solid #1e3a5f;
    box-shadow: 0 4px 12px rgba(30, 58, 95, 0.1);
}

.btn-secondary:hover {
    background: #1e3a5f;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.2);
}

.alert {
    padding: 20px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.alert-success {
    background: linear-gradient(135deg, #f0fff4 0%, #e6fffa 100%);
    color: #22543d;
    border: 1px solid rgba(0, 128, 128, 0.2);
}

.alert-danger {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: #742a2a;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.page-header {
    text-align: center;
    margin-bottom: 48px;
    padding: 40px 0;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e3a5f;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.page-header h1 i {
    color: #008080;
    font-size: 2.5rem;
}

.page-header p {
    font-size: 1.25rem;
    color: #4a6b8a;
    font-weight: 500;
}

/* Company Sidebar Styles */
.company-sidebar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 280px !important;
    height: 100vh !important;
    background: linear-gradient(180deg, #1e3a5f 0%, #008080 100%) !important;
    color: white !important;
    z-index: 1000 !important;
    overflow-y: auto !important;
    transition: all 0.3s ease !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1) !important;
    display: block !important;
    visibility: visible !important;
    border-right: 3px solid #00b3b3 !important;
}

.company-sidebar.collapsed {
    width: 70px;
}

.sidebar-header {
    padding: 24px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.company-brand {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 8px !important;
    border-radius: 8px !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.sidebar-logo {
    height: 32px !important;
    width: auto !important;
    filter: brightness(0) invert(1) !important;
    display: block !important;
}

.brand-text {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.sidebar-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.sidebar-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.sidebar-user {
    padding: 24px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.user-avatar {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.5rem !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}

.user-info h4 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.user-info p {
    font-size: 0.9rem;
    margin-bottom: 4px;
    opacity: 0.9;
}

.user-role {
    font-size: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 8px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-nav {
    padding: 20px 0;
    flex: 1;
}

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

.nav-item {
    margin-bottom: 4px;
}

.nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 16px 20px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    font-weight: 500 !important;
    border-radius: 8px !important;
    margin: 4px 8px !important;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transform: translateX(8px);
}

.nav-link.active {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border-right: 4px solid #00b3b3;
}

.nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.nav-link span {
    flex: 1;
}

.badge {
    background: #00b3b3;
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.nav-link-danger {
    color: #ff6b6b !important;
}

.nav-link-danger:hover {
    background: rgba(255, 107, 107, 0.1) !important;
    color: #ff6b6b !important;
}

.sidebar-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 20px 0;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.help-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.help-link:hover {
    color: white;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

/* Main content adjustment for sidebar */
.main-content-with-sidebar {
    margin-left: 280px !important;
    transition: all 0.3s ease !important;
    min-height: 100vh !important;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%) !important;
    position: relative !important;
    z-index: 1 !important;
}

.main-content-with-sidebar.sidebar-collapsed {
    margin-left: 70px;
}

/* Enhanced Dashboard Styles */
.dashboard-header {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%) !important;
    color: white !important;
    padding: 60px 0 40px !important;
    position: relative !important;
    overflow: hidden !important;
    margin-bottom: 0 !important;
}

.dashboard-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.dashboard-hero {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

.company-info {
    display: flex;
    align-items: center;
    gap: 24px;
}

.company-logo {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    object-fit: cover;
}

.company-logo:hover {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.5);
}

.company-logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.company-details h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.company-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.company-meta span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    opacity: 0.95;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.dashboard-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.dashboard-actions .btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dashboard-actions .btn-primary {
    background: linear-gradient(135deg, #00b3b3 0%, #008080 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(0, 179, 179, 0.3);
}

.dashboard-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 179, 179, 0.4);
}

.dashboard-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.dashboard-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Enhanced Stats Section */
.dashboard-stats {
    padding: 80px 0 !important;
    background: white !important;
    position: relative !important;
    margin: 0 !important;
}

.stats-header {
    text-align: center;
    margin-bottom: 60px;
}

.stats-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 16px;
}

.stats-header p {
    font-size: 1.2rem;
    color: #4a6b8a;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 128, 128, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(0, 128, 128, 0.4);
}

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

.stat-content h3 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
    color: #1e3a5f;
}

.stat-content p {
    color: #4a6b8a;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive sidebar */
@media (max-width: 768px) {
    .company-sidebar {
        transform: translateX(-100%);
    }
    
    .company-sidebar.mobile-open {
        transform: translateX(0);
    }
    
    .main-content-with-sidebar {
        margin-left: 0;
    }
    
    .sidebar-overlay.mobile-open {
        display: block;
    }
}

/* Responsive Dashboard */
@media (max-width: 1200px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .dashboard-header {
        padding: 40px 0 30px;
    }
    
    .dashboard-hero {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
    
    .company-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .company-details h1 {
        font-size: 2.5rem;
    }
    
    .company-meta {
        justify-content: center;
        gap: 12px;
    }
    
    .company-meta span {
        font-size: 0.9rem;
        padding: 6px 12px;
    }
    
    .dashboard-actions {
        justify-content: center;
    }
    
    .dashboard-stats {
        padding: 60px 0;
    }
    
    .stats-header h2 {
        font-size: 2rem;
    }
    
    .stats-header p {
        font-size: 1rem;
    }
    
    .stat-card {
        padding: 30px 24px;
    }
    
    .stat-content h3 {
        font-size: 2.5rem;
    }
    
    .dashboard-content {
        padding: 60px 0;
    }
    
    .card-header {
        padding: 20px 24px;
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .card-content {
        padding: 24px;
    }
    
    .job-item {
        padding: 20px;
    }
    
    .job-meta {
        gap: 12px;
    }
    
    .job-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .job-actions .btn {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .company-details h1 {
        font-size: 2rem;
    }
    
    .company-meta {
        flex-direction: column;
        align-items: center;
    }
    
    .dashboard-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .dashboard-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    .stat-content h3 {
        font-size: 2rem;
    }
}

/* Professional Company Login Styles */
.company-login-hero {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(0, 128, 128, 0.8) 100%);
}

.login-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-logo {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.brand-text h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.brand-text p {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

.company-login-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    min-height: 100vh;
}

.login-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.login-form-container {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.login-form-header {
    text-align: center;
    margin-bottom: 40px;
}

.login-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 24px rgba(0, 128, 128, 0.3);
}

.login-form-header h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.login-form-header p {
    color: #4a6b8a;
    font-size: 1.1rem;
}

.login-alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.login-alert-error {
    background: linear-gradient(135deg, #fff5f5 0%, #fed7d7 100%);
    color: #742a2a;
    border: 1px solid rgba(229, 62, 62, 0.2);
}

.professional-login-form .form-group {
    margin-bottom: 24px;
}

.professional-login-form label {
    display: block;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Opportunity Info Section Enhanced UI */
.opportunity-info {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.opportunity-info .info-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 128, 128, 0.08);
    transition: background-color 0.3s ease;
}

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

.opportunity-info .info-item:hover {
    background: rgba(0, 128, 128, 0.02);
}

.opportunity-info .info-label {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9rem;
    min-width: 100px;
    flex-shrink: 0;
}

.opportunity-info .info-value {
    color: var(--light-text);
    font-size: 0.95rem;
    text-align: right;
    flex: 1;
    margin-left: 16px;
    line-height: 1.4;
}

.opportunity-info .featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #8b6914;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.opportunity-info .featured-badge i {
    font-size: 0.7rem;
}

/* Category Badge in Opportunity Info */
.opportunity-info .category-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.opportunity-info .category-badge.job {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.opportunity-info .category-badge.internship {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: white;
}

.opportunity-info .category-badge.seminar_workshop {
    background: linear-gradient(135deg, #ffc107, #e0a800);
    color: #212529;
}

.opportunity-info .category-badge i {
    font-size: 0.7rem;
}

/* Deadline Status Styles */
.opportunity-info .deadline-expired {
    color: #dc3545;
    font-weight: 600;
}

.opportunity-info .deadline-urgent {
    color: #dc3545;
    font-weight: 600;
    background: rgba(220, 53, 69, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.opportunity-info .deadline-soon {
    color: #fd7e14;
    font-weight: 600;
    background: rgba(253, 126, 20, 0.1);
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
}

/* Location Icon in Info */
.opportunity-info .info-value i.fa-map-marker-alt {
    color: var(--secondary-color);
    margin-right: 6px;
    font-size: 0.8rem;
}

/* Enhanced Contact Information Section */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.contact-item {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.contact-content {
    flex: 1;
}

.contact-content h6 {
    color: var(--dark-text);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
    word-break: break-all;
    line-height: 1.4;
}

.contact-link:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-link i.fa-external-link-alt {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-link i.fa-paper-plane {
    font-size: 0.8rem;
    opacity: 0.7;
}

.contact-note {
    color: var(--light-text);
    font-size: 0.8rem;
    margin-top: 6px;
    margin-bottom: 0;
    opacity: 0.8;
}

.contact-actions {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 128, 128, 0.1);
}

.contact-actions .action-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-actions .btn {
    flex: 1;
    min-width: 140px;
    justify-content: center;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Enhanced Search and Filter Section */
.search-filter-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
}

.search-filter-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
    overflow: hidden;
}

.search-filter-card .card-header-section {
    background: var(--gradient-primary);
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.search-filter-card .card-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-filter-card .card-title i {
    font-size: 1.1rem;
    opacity: 0.9;
}

.search-filter-card .card-content {
    padding: 32px;
}

.search-filter-form {
    width: 100%;
}

.search-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    align-items: end;
}

.form-group {
    margin-bottom: 0;
}

.form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-label i {
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-control,
.form-select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(0, 128, 128, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    color: var(--dark-text);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.1);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: var(--light-text);
    opacity: 0.7;
}

/* Highlight Items - White Color */
.highlight-item {
    color: white !important;
}

.highlight-item i {
    color: white !important;
}

.highlight-item span {
    color: white !important;
}

/* Admin Dashboard - Closed Job Banner */
.badge.bg-danger {
    background-color: #dc3545 !important;
    color: white !important;
}

.badge.bg-secondary {
    background-color: #6c757d !important;
    color: white !important;
}

.opportunity-item .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
}

/* Closed Job Status Indicator */
.job-status-closed {
    background: linear-gradient(135deg, #6c757d, #545b62);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.job-status-closed i {
    font-size: 1rem;
}

/* Location Input Special Styling */
#locationFilter {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border: 2px solid rgba(0, 128, 128, 0.15);
    position: relative;
}

#locationFilter:focus {
    background: white;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 128, 128, 0.15);
}

#locationFilter::placeholder {
    color: var(--light-text);
    font-style: italic;
}

/* Search Button Enhancement */
.search-filter-form .btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
}

.search-filter-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
}

/* Responsive Design for Search and Filter */
@media (max-width: 768px) {
    .search-filter-section {
        padding: 24px 0;
    }
    
    .search-filter-card .card-header-section {
        padding: 20px 24px;
    }
    
    .search-filter-card .card-content {
        padding: 24px;
    }
    
    .search-filter-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .form-control,
    .form-select {
        padding: 14px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .search-filter-form .btn-primary {
        padding: 16px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .search-filter-card .card-header-section {
        padding: 16px 20px;
    }
    
    .search-filter-card .card-content {
        padding: 20px;
    }
    
    .search-filter-grid {
        gap: 16px;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .form-control,
    .form-select {
        padding: 12px 14px;
        font-size: 16px;
    }
}

/* Responsive Design for Contact Information */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .contact-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .contact-content h6 {
        font-size: 0.85rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
        justify-content: center;
    }
    
    .contact-actions {
        margin-top: 20px;
        padding-top: 16px;
    }
    
    .contact-actions .action-buttons {
        flex-direction: column;
        gap: 8px;
    }
    
    .contact-actions .btn {
        width: 100%;
        min-width: auto;
    }
    
    .contact-note {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .contact-item {
        padding: 16px;
    }
    
    .contact-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .contact-content h6 {
        font-size: 0.8rem;
    }
    
    .contact-link {
        font-size: 0.85rem;
    }
}

/* Enhanced Sidebar Card Styling */
.sidebar-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 128, 128, 0.1);
    overflow: hidden;
    margin-bottom: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.sidebar-card .card-header-section {
    background: var(--gradient-primary);
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-card .card-title {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card .card-title i {
    font-size: 1rem;
    opacity: 0.9;
}

.sidebar-card .card-content {
    padding: 24px;
}

/* Responsive Design for Opportunity Info */
@media (max-width: 768px) {
    .opportunity-info .info-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 20px;
    }
    
    .opportunity-info .info-label {
        min-width: auto;
        font-size: 0.85rem;
    }
    
    .opportunity-info .info-value {
        text-align: left;
        margin-left: 0;
        font-size: 0.9rem;
    }
    
    .sidebar-card {
        margin-bottom: 20px;
    }
    
    .sidebar-card .card-header-section {
        padding: 16px 20px;
    }
    
    .sidebar-card .card-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .opportunity-info .info-item {
        padding: 14px 16px;
    }
    
    .opportunity-info .info-label {
        font-size: 0.8rem;
    }
    
    .opportunity-info .info-value {
        font-size: 0.85rem;
    }
    
    .sidebar-card .card-header-section {
        padding: 14px 16px;
    }
    
    .sidebar-card .card-content {
        padding: 16px;
    }
}

/* Company Dashboard Responsive Design */
@media (max-width: 768px) {
    .company-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        z-index: 1050;
        transition: left 0.3s ease;
        background: white;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
    }
    
    .company-sidebar.show {
        left: 0;
    }
    
    .company-main-content {
        margin-left: 0;
        padding: 1rem;
    }
    
    .dashboard-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .dashboard-card {
        padding: 1rem;
    }
    
    .dashboard-card h3 {
        font-size: 1.5rem;
    }
    
    .recent-opportunities {
        margin-top: 2rem;
    }
    
    .opportunity-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .opportunity-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .sidebar-toggle {
        display: block;
        position: fixed;
        top: 1rem;
        left: 1rem;
        z-index: 1060;
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 0.5rem;
        border-radius: 4px;
    }
    
    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1040;
    }
    
    .sidebar-overlay.show {
        display: block;
    }
    
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 1rem;
    }
    
    .login-form-container {
        padding: 32px 24px;
    }
    
    .login-form-header h2 {
        font-size: 1.75rem;
    }
    
    .brand-section {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .brand-text h1 {
        font-size: 2rem;
    }
    
    .brand-text p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .company-sidebar {
        width: 100%;
    }
    
    .dashboard-stats {
        grid-template-columns: 1fr;
    }
    
    .dashboard-card h3 {
        font-size: 1.25rem;
    }
    
    .opportunity-item {
        padding: 0.75rem;
    }
    
    .sidebar-toggle {
        top: 0.5rem;
        left: 0.5rem;
    }
    
    .login-form-container {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .login-form-header h2 {
        font-size: 1.5rem;
    }
    
    .login-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .brand-text h1 {
        font-size: 1.75rem;
    }
    
    .brand-text p {
        font-size: 0.9rem;
    }
}

.input-icon {
    position: absolute;
    left: 16px;
    color: #4a6b8a;
    font-size: 1.1rem;
    z-index: 2;
}

.form-input {
    width: 100%;
    padding: 16px 16px 16px 48px;
    border: 2px solid rgba(0, 128, 128, 0.1);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-input:focus {
    outline: none;
    border-color: #008080;
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 128, 128, 0.1);
}

.form-input.error {
    border-color: #e53e3e;
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.1);
}

.field-error {
    color: #e53e3e;
    font-size: 0.85rem;
    margin-top: 6px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.field-error::before {
    content: '⚠';
    font-size: 0.8rem;
}

.password-toggle {
    position: absolute;
    right: 16px;
    background: none;
    border: none;
    color: #4a6b8a;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.password-toggle:hover {
    color: #008080;
    background: rgba(0, 128, 128, 0.1);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #4a6b8a;
}

.checkbox-wrapper input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(0, 128, 128, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark {
    background: #008080;
    border-color: #008080;
}

.checkbox-wrapper input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.forgot-password {
    color: #008080;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.forgot-password:hover {
    color: #1e3a5f;
    text-decoration: underline;
}

.login-submit-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 128, 128, 0.4);
}

.login-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 128, 128, 0.1);
}

.login-footer p {
    color: #4a6b8a;
    font-size: 0.95rem;
}

.register-link {
    color: #008080;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.register-link:hover {
    color: #1e3a5f;
    text-decoration: underline;
}

.login-features-panel {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.features-header {
    text-align: center;
    margin-bottom: 40px;
}

.features-header h3 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 12px;
}

.features-header p {
    color: #4a6b8a;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    gap: 24px;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: linear-gradient(135deg, #f8fafc 0%, #f0f8f8 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 128, 128, 0.08);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 128, 128, 0.15);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.3);
}

.feature-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e3a5f;
    margin-bottom: 8px;
}

.feature-content p {
    color: #4a6b8a;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive Login */
@media (max-width: 1024px) {
    .login-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .company-login-hero {
        padding: 60px 0 40px;
    }
    
    .hero-brand {
        flex-direction: column;
        gap: 16px;
    }
    
    .brand-text h1 {
        font-size: 2rem;
    }
    
    .company-login-form-section {
        padding: 40px 0;
    }
    
    .login-form-container,
    .login-features-panel {
        padding: 32px 24px;
    }
    
    .login-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .login-form-header h2 {
        font-size: 1.75rem;
    }
}

/* Company Cards Layout */
.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.company-card {
    background: white;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
}

.company-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

.company-header {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-shrink: 0;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--gradient-teal);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: white;
    font-size: 1.5rem;
}

.company-info {
    flex: 1;
}

.company-info h4 {
    color: var(--dark-text);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    word-wrap: break-word;
}

.company-location {
    color: var(--light-text);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.company-stats {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.company-stats .stat {
    background: var(--light-bg);
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(0, 128, 128, 0.1);
}

.company-actions {
    text-align: center;
    margin-top: auto;
}

.company-actions .btn {
    background: linear-gradient(135deg, #1e3a5f 0%, #008080 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 128, 128, 0.2);
}

.company-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 128, 0.3);
    background: linear-gradient(135deg, #152a4a 0%, #006666 100%);
}

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

.no-companies-card {
    background: white;
    border-radius: var(--border-radius-large);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-light);
    border: 2px dashed rgba(0, 128, 128, 0.2);
}

.no-companies-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.no-companies-title {
    color: var(--dark-text);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.no-companies-subtitle {
    color: var(--light-text);
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.no-companies-actions .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    transition: var(--transition);
}

.no-companies-actions .btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.no-companies-actions .btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.no-companies-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Responsive Design for Company Cards */
@media (max-width: 768px) {
    .companies-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .company-card {
        padding: 20px;
    }
    
    .company-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .company-logo {
        margin-bottom: 0;
    }
    
    .company-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .company-stats .stat {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .no-companies-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .no-companies-actions .btn {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .company-card {
        padding: 16px;
    }
    
    .company-name {
        font-size: 1rem;
    }
    
    .company-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .company-actions .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Mobile Hero Image */
@media (max-width: 768px) {
    .hero-slider-image {
        display: none;
    }
    
    .hero-slider-image-mobile {
        display: block;
    }
}

/* Custom Teal Magnifying Glass Icon */
.teal-search-icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background: #00b3b3;
    border-radius: 6px;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 179, 179, 0.3);
}

.teal-search-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.teal-search-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 2px;
    height: 6px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 1px;
    margin-left: 4px;
    margin-top: 4px;
}

/* White Icons for "For Job Seekers", "For Employers", and "For Communities" sections */
.feature-item .feature-icon .fas.fa-search {
    color: white !important;
}

.feature-item .feature-icon .fas.fa-building {
    color: white !important;
}

.feature-item .feature-icon .fas.fa-users {
    color: white !important;
}

/* Montserrat Font for Brand Text */
.footer-title,
.footer-title span {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 800 !important;
    letter-spacing: 0.5px !important;
}
