/* Mega Job Fair 2026 - Page-specific styles */
/* Uses site color scheme: #24353b, #c43a47, #5a5a5a, #646567, #eee, #e5e5e5 */

/* Hero Section */
.job-fair-hero {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(36, 53, 59, 0.95) 0%, rgba(36, 52, 58, 0.85) 100%),
                url(../images/banners/PLACEMENT.jpg) no-repeat center center / cover;
}
.job-fair-hero .container { position: relative; z-index: 2; }
.job-fair-hero h1 {
    font-size: 42px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}
.job-fair-hero .hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Intro / Welcome Card */
.job-fair-intro {
    padding-top: 50px !important;
    padding-bottom: 30px !important;
    margin-top: -40px;
}
.job-fair-welcome-card {
    position: relative;
    z-index: 10;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    padding: 45px 50px;
    border-left: 5px solid #c43a47;
    text-align: center;
}
.job-fair-welcome-card h2 {
    font-size: 22px;
    color: #24353b;
    margin-bottom: 25px;
    text-transform: none;
    font-weight: 600;
}
.job-fair-welcome-card .intro-text {
    font-size: 15px;
    line-height: 1.9;
    color: #5a5a5a;
    text-align: center;
}

/* Table Section */
.job-fair-table-section {
    background: #f5f5f5;
    padding: 70px 0;
}
.job-fair-table-section .section-title {
    text-align: center;
    margin-bottom: 45px;
}
.job-fair-table-section .section-title h2 {
    font-size: 32px;
    color: #24353b;
    margin-bottom: 10px;
}
.job-fair-table-section .section-title p {
    color: #646567;
    font-size: 16px;
}

/* Table Styles - Clean card layout */
.job-fair-table-wrap {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}
.job-fair-table {
    margin-bottom: 0;
    font-size: 15px;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}
.job-fair-table thead th {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #fff;
    background: #24353b;
    text-align: left;
    border: none;
}
.job-fair-table thead th:first-child {
    padding-left: 24px;
    width: 50px;
    text-align: center;
}
.job-fair-table thead th:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.1);
}
.job-fair-table tbody tr {
    transition: all 0.2s ease;
    border-bottom: 1px solid #eee;
}
.job-fair-table tbody tr:last-child {
    border-bottom: none;
}
.job-fair-table tbody tr:hover {
    background: #fafbfc;
    box-shadow: inset 0 0 0 2px rgba(196, 58, 71, 0.15);
}
.job-fair-table tbody td {
    padding: 20px 24px;
    color: #5a5a5a;
    vertical-align: middle;
    border: none;
    line-height: 1.6;
}
.job-fair-table tbody td:first-child {
    font-weight: 700;
    color: #c43a47;
    width: 50px;
    text-align: center;
    font-size: 14px;
}
.job-fair-table tbody td:nth-child(2) {
    font-weight: 600;
    color: #24353b;
    font-size: 15px;
}
.job-fair-table tbody td:nth-child(3) {
    max-width: 280px;
    overflow-wrap: break-word;
}
.job-fair-table tbody td:nth-child(5) {
    font-size: 13px;
    color: #646567;
    max-width: 220px;
    overflow-wrap: break-word;
}

/* Mobile: Card layout instead of table */
@media (max-width: 991px) {
    .job-fair-table-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .job-fair-table {
        min-width: 700px;
    }
}
@media (max-width: 768px) {
    .job-fair-hero h1 { font-size: 26px; }
    .job-fair-hero .hero-subtitle { font-size: 14px; }
    .job-fair-welcome-card { padding: 30px 25px; }
    .job-fair-table-section { padding: 40px 0; }
    .job-fair-table thead th {
        padding: 14px 16px;
        font-size: 11px;
    }
    .job-fair-table tbody td {
        padding: 14px 16px;
        font-size: 13px;
    }
}






/* Section Title */
.job-fair-widgets-section .section-title {
    text-align: center;
    margin-bottom: 2.5rem;
}

.job-fair-widgets-section .section-title h2 {
    color: #1a365d;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.job-fair-widgets-section .section-title p {
    color: #718096;
    font-size: 12px;
}

/* Company Widgets Grid */
.company-widgets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

/* Individual Company Widget */
.company-widget {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-widget:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(26, 54, 93, 0.12), 0 4px 8px rgba(0, 0, 0, 0.08);
}

/* Widget Header */
.company-widget-header {
    background: linear-gradient(135deg, #2c5282 0%, #2b6cb0 100%);
    color: #fff;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.company-widget-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 700;
}

.company-widget-name {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    flex: 1;
  color: #fff;
}

/* Widget Body */
.company-widget-body {
    padding: 1.25rem 1.25rem;
}

.company-widget-field {
    margin-bottom: 1rem;
}

.company-widget-field:last-child {
    margin-bottom: 0;
}

.company-widget-field .field-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #718096;
    margin-bottom: 0.35rem;
}

.company-widget-field .field-value {
    margin: 0;
    font-size: 13px;
    color: #2d3748;
    line-height: 1.5;
}

.company-widget-contact .field-value {
    font-size: 14px;
    color: #2c5282;
    word-break: break-word;
}

/* Disclaimer Section */
.job-fair-intro .intro-text {
    font-size: 12px;
    color: #718096;
}

/* Responsive */
@media (max-width: 768px) {
    .company-widgets-grid {
        grid-template-columns: 1fr;
    }

    .job-fair-hero h1 {
        font-size: 1.75rem;
    }
}
















