/* Job Fair Specific Styles */

/* Highlights Section */
.job-fair-highlights {
    background-color: var(--smoke-color);
    border-left: 5px solid var(--theme-color);
    padding: 40px;
    border-radius: 0 10px 10px 0;
    margin-bottom: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-color);
    font-size: 20px;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.highlight-content h4 {
    margin: 0 0 5px;
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
}

.highlight-content p {
    margin: 0;
    color: var(--body-color);
    font-size: 16px;
    line-height: 1.5;
}

/* Why Choose Us Features */
.why-join-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--theme-color);
}

.feature-icon {
    font-size: 40px;
    color: var(--theme-color);
    margin-bottom: 20px;
    display: inline-block;
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Animated Line CTA Button */
.cta-btn-anim {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: transparent;
    color: var(--title-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.cta-btn-anim::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: var(--theme-color);
    transition: all 0.3s ease;
}

.cta-btn-anim::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: var(--theme-color);
    transition: all 0.3s ease;
}

.cta-line-top,
.cta-line-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--theme-color);
    transition: all 0.3s ease;
}

.cta-line-top {
    top: 0;
    transform: scaleX(0);
    transform-origin: left;
}

.cta-line-bottom {
    bottom: 0;
    transform: scaleX(0);
    transform-origin: right;
}

.cta-btn-anim:hover {
    color: var(--theme-color);
    letter-spacing: 2px;
}

.cta-btn-anim:hover .cta-line-top,
.cta-btn-anim:hover .cta-line-bottom {
    transform: scaleX(1);
}

.cta-btn-anim:hover::before,
.cta-btn-anim:hover::after {
    height: 100%;
    /* Ensure full height on hover */
    background: var(--theme-color);
}

/* Call to Action Section */
.job-fair-cta {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-us.jpg');
    /* Verify path later */
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    text-align: center;
    color: #fff;
    margin-top: 50px;
    border-radius: 20px;
}

.job-fair-cta h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 20px;
}

.job-fair-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn-filled {
    background: var(--theme-color);
    color: #fff;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 5px;
    display: inline-block;
}

.cta-btn-filled:hover {
    background: #fff;
    color: var(--theme-color);
}