/* Careers & Alumni Section Specific Styles */

.career-hero {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 4rem 0;
    color: white;
    text-align: center;
}

.career-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.job-board {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.job-listing {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    transition: background 0.3s ease;
}

.job-listing:hover {
    background: #f8fafc;
}

.job-listing:last-child {
    border-bottom: none;
}

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

.job-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.company-name {
    color: #666;
    font-size: 0.95rem;
}

.job-badge {
    background: var(--accent-gold);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.job-details {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    color: #666;
    font-size: 0.9rem;
}

.job-detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.job-detail-item i {
    color: var(--primary-blue);
}

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

.internship-card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.company-logo {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #dbeafe 0%, #93c5fd 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.internship-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.internship-duration {
    color: #666;
    margin-bottom: 1rem;
}

.alumni-network {
    background: linear-gradient(to bottom, #f0f9ff, white);
    padding: 3rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.alumni-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.alumni-photo {
    height: 200px;
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-gold);
}

.alumni-info {
    padding: 1.5rem;
}

.alumni-name {
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.3rem;
}

.alumni-position {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.alumni-company {
    color: #666;
    font-size: 0.9rem;
}

.employer-partners {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.partner-logo-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: transform 0.3s ease;
}

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

.career-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.career-stat-card {
    background: var(--primary-blue);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-gold);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 1.1rem;
}

/* ================================================
   WHY WORK WITH OUR STUDENTS — Internships
   ================================================ */
.why-students-section {
    padding: 5rem 0;
    background: #fff;
}

.why-students-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-students-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.why-students-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.why-students-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

.why-students-text,
.why-students-involved,
.recruit-text,
.recruit-image {
    transition: none;
}

.sticky-col {
    position: sticky;
    top: 120px;
}

.involved-label {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00bcd4;
    margin-bottom: 2rem;
}

.involved-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.involved-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: 2px solid #003366;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #003366;
}

.involved-content h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.involved-content p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Responsive — Why Students */
@media (max-width: 1024px) {
    .why-students-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .sticky-col {
        position: relative !important;
        top: auto !important;
    }

    .stat-value { font-size: 2.5rem; }
    .service-icon { font-size: 2.5rem; }
}

@media (max-width: 640px) {
    .why-students-section {
        padding: 3rem 0;
    }

    .why-students-text h2 {
        font-size: 1.6rem;
    }

    .involved-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1.1rem;
    }
}

/* ================================================
   HOW TO RECRUIT — Text + Image
   ================================================ */
.recruit-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.recruit-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.recruit-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: flex-start;
}

.recruit-text {
    position: sticky;
    top: 120px;
}

.recruit-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.recruit-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

.recruit-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}

.recruit-list li {
    position: relative;
    padding-left: 1.25rem;
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.5rem;
}

.recruit-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 7px;
    height: 7px;
    background: #003366;
}

.recruit-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #003366;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid #003366;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.recruit-link:hover {
    gap: 1rem;
}

.recruit-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #003366;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 1rem 2rem;
    margin-top: 1rem;
    transition: background 0.3s;
}

.recruit-cta:hover {
    background: #00254d;
}

.recruit-cta i {
    font-size: 0.8rem;
}

.recruit-image img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

/* Responsive — Recruit */
@media (max-width: 1024px) {
    .recruit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .recruit-text { position: static; }

    .recruit-image {
        order: -1;
    }

    .recruit-image img {
        height: 400px;
    }
}

@media (max-width: 640px) {
    .recruit-section {
        padding: 3rem 0;
    }

    .recruit-text h2 {
        font-size: 1.6rem;
    }

    .recruit-image img {
        height: 280px;
    }
}

/* ================================================
   GET JOB READY — Text + Card Carousel
   ================================================ */
.job-ready-section {
    padding: 5rem 0;
    background: #fff;
}

.job-ready-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.job-ready-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.job-ready-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.job-ready-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1.25rem;
}

/* Card Carousel */
.job-ready-carousel {
    position: sticky;
    top: 120px;
}

.carousel-wrapper {
    position: relative;
    padding-top: 36px; /* half of icon sticking out */
}

.carousel-card {
    display: none;
    position: relative;
    text-align: center;
}

.carousel-card.active {
    display: block;
}

.carousel-card-icon {
    width: 72px;
    height: 72px;
    background: #003366;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    position: absolute;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.carousel-card-body {
    background: #d5f0ea;
    padding: 3.5rem 2.5rem 2rem;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-card-body h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 1rem;
}

.carousel-card-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #333;
    margin: 0;
    max-width: 420px;
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    cursor: pointer;
    transition: all 0.2s;
}

.carousel-dot.active {
    width: 28px;
    background: #003366;
}

.carousel-arrows {
    display: flex;
    gap: 0.4rem;
}

.carousel-arrow {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background 0.2s, color 0.2s;
}

.carousel-prev {
    background: #003366;
    color: #fff;
}

.carousel-prev:hover {
    background: #00254d;
}

.carousel-next {
    background: #003366;
    color: #fff;
}

.carousel-next:hover {
    background: #00254d;
}

/* Responsive — Job Ready */
@media (max-width: 1024px) {
    .job-ready-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .job-ready-carousel {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .job-ready-section {
        padding: 3rem 0;
    }

    .job-ready-text h2 {
        font-size: 1.6rem;
    }

    .carousel-card-body {
        padding: 3rem 1.5rem 1.5rem;
        min-height: 220px;
    }
}

/* ================================================
   FIND WORK & BUILD EXPERIENCE
   ================================================ */
.find-work-section {
    padding: 5rem 0;
    background: #f5f5f5;
}

.find-work-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.find-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.find-work-image {
    position: sticky;
    top: 120px;
}

.find-work-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.find-work-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.find-work-text > p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 2rem;
}

.find-work-items {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.find-work-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.find-work-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: 2px solid #003366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #003366;
}

.find-work-item h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.2rem;
    line-height: 1.4;
}

.find-work-item p {
    font-size: 0.92rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

/* Responsive — Find Work */
@media (max-width: 1024px) {
    .find-work-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .find-work-image {
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .find-work-section {
        padding: 3rem 0;
    }

    .find-work-text h2 {
        font-size: 1.6rem;
    }

    .find-work-image img {
        height: 300px;
    }

    .find-work-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        font-size: 1rem;
    }
}

/* ================================================
   FEATURE CARDS — Two-column cards
   ================================================ */
.feature-cards-section {
    padding: 5rem 0;
    background: #fff;
}

.feature-cards-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.feature-card {
    background: #f3f3f3;
    overflow: hidden;
}

.feature-card-text {
    padding: 3rem 3rem 2.5rem;
}

.feature-card-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.85rem;
    font-weight: 800;
    color: #003366;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.feature-card-lead {
    font-weight: 600;
    margin-bottom: 0.75rem !important;
}

.feature-card-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.75rem;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #003366;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 2px solid #003366;
    padding-bottom: 0.25rem;
    transition: all 0.3s ease;
}

.feature-card-link:hover {
    gap: 1rem;
}

.feature-card-link i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.feature-card-link:hover i {
    transform: translateX(3px);
}

.feature-card-image {
    position: relative;
}

.feature-card-gradient {
    height: 6px;
    background: linear-gradient(90deg, #003366 0%, #1e90ff 50%, #003366 100%);
}

.feature-card-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

/* Responsive — Feature Cards */
@media (max-width: 1024px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
        margin: 0 auto;
    }

    .feature-card-text {
        padding: 2.5rem 2.5rem 2rem;
    }

    .feature-card-text h3 {
        font-size: 1.6rem;
    }
}

@media (max-width: 640px) {
    .feature-cards-grid {
        gap: 2rem;
    }

    .feature-card-text {
        padding: 2rem 1.5rem 1.5rem;
    }

    .feature-card-text h3 {
        font-size: 1.4rem;
    }

    .feature-card-image img {
        height: 260px;
    }
}

/* ================================================
   OTHER OPPORTUNITIES — Accordion
   ================================================ */
.opportunities-section {
    padding: 4rem 0 5rem;
    background: #fff;
}

.opportunities-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.opportunities-content {
    max-width: 750px;
    margin: 0 auto;
}

.opportunities-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.opportunities-intro {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
}

.opportunities-accordion {
    display: flex;
    flex-direction: column;
}

.accordion-item {
    border-bottom: 1px solid #c0c0c0;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #003366;
    text-align: left;
    transition: opacity 0.2s;
}

.accordion-header:hover {
    opacity: 0.7;
}

.accordion-header i {
    font-size: 0.85rem;
    color: #003366;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 1rem;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0;
}

.accordion-item.active .accordion-body {
    max-height: 300px;
    padding: 0 0 1.5rem;
}

.accordion-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #444;
    margin: 0;
}

@media (max-width: 640px) {
    .opportunities-content h2 {
        font-size: 1.5rem;
    }

    .accordion-header {
        font-size: 1rem;
        padding: 1.25rem 0;
    }
}

/* ================================================
   WHY WORK HERE — Sticky Image + Scrolling Text
   ================================================ */
.why-work-section {
    padding: 5rem 0;
    background: #fff;
}

.why-work-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
}

.why-work-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #003366;
    margin-bottom: 2rem;
}

.why-work-text h2 em {
    font-style: italic;
}

.why-work-block {
    margin-bottom: 2.5rem;
}

.why-work-block h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.why-work-block h3 em {
    font-style: italic;
}

.why-work-block p,
.why-work-intro {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
}

.why-work-image {
    position: sticky;
    top: 120px;
}

/* Why Work — Image Carousel */
.why-work-gallery {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.why-work-main-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
}

.why-work-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.why-work-thumbnails {
    display: flex;
    gap: 0.5rem;
    background: #f0f0f0;
    padding: 0.75rem;
    align-items: center;
}

.why-work-thumb {
    width: 65px;
    height: 50px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    flex-shrink: 0;
}

.why-work-thumb.active,
.why-work-thumb:hover {
    opacity: 1;
}

.why-work-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-work-fullscreen {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e0e0e0;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0;
    transition: background 0.2s;
    color: #555;
    font-size: 1rem;
}

.why-work-fullscreen:hover {
    background: #d0d0d0;
    color: #003366;
}

/* Why Work — Lightbox */
.why-work-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 20, 40, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.why-work-lightbox.active {
    display: flex;
}

.why-work-lb-close {
    position: absolute;
    top: 20px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: background 0.3s;
    z-index: 10001;
}

.why-work-lb-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.why-work-lb-prev,
.why-work-lb-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #003366;
    font-size: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
    z-index: 10001;
}

.why-work-lb-prev { left: 30px; }
.why-work-lb-next { right: 30px; }

.why-work-lb-prev:hover,
.why-work-lb-next:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.why-work-lb-main {
    max-width: 80%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-work-lb-main img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.why-work-lb-counter {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* ================================================
   CURRENT OPENINGS — Job Listings
   ================================================ */
.openings-section {
    padding: 5rem 0;
    background: #f8f8f8;
}

.openings-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.openings-header {
    margin-bottom: 2.5rem;
}

.openings-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #00bcd4;
    margin-bottom: 0.75rem;
}

.openings-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #003366;
}

/* Openings Filters */
.openings-filters {
    display: flex;
    align-items: flex-end;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

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

.openings-filter-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
}

.openings-filter-group select {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #003366;
    background: #fff;
    border: 1px solid #ddd;
    padding: 0.6rem 2rem 0.6rem 0.75rem;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23003366' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    cursor: pointer;
    min-width: 180px;
    transition: border-color 0.2s;
}

.openings-filter-group select:focus {
    outline: none;
    border-color: #003366;
}

.openings-filter-reset {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.6rem 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.openings-filter-reset:hover {
    color: #003366;
}

.openings-count {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1rem;
}

.openings-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #999;
}

.openings-empty i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
    color: #ccc;
}

.openings-empty p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.openings-empty-reset {
    background: none;
    border: none;
    color: #003366;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
}

.openings-list {
    display: block;
    width: 100%;
}

.opening-item {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
    transition: padding-left 0.2s;
}

.opening-item:first-child {
    border-top: 1px solid #ddd;
}

.opening-info {
    flex: 1;
}

.opening-info h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #003366;
    margin-bottom: 0.3rem;
}

.opening-dept {
    font-size: 0.85rem;
    color: #888;
}

.opening-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-right: 1.5rem;
}

.opening-type {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: #003366;
    background: #e8f0fe;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

.opening-deadline {
    font-size: 0.85rem;
    color: #888;
}

.opening-deadline i {
    margin-right: 0.3rem;
    color: #00bcd4;
}

.opening-arrow {
    font-size: 0.85rem;
    color: #ccc;
    transition: all 0.2s;
}

.opening-item:hover {
    padding-left: 0.5rem;
}

.opening-item:hover .opening-arrow {
    color: #003366;
    transform: translateX(4px);
}

/* ================================================
   RESPONSIVE — Why Work & Openings
   ================================================ */
@media (max-width: 1024px) {
    .why-work-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-work-text {
        text-align: center;
    }

    .why-work-image {
        position: relative;
        top: auto;
        order: -1;
    }

    .why-work-main-image {
        height: 350px;
    }

    .opening-item {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .opening-meta {
        margin-right: 0;
        width: 100%;
    }

    .openings-filters {
        gap: 1rem;
    }

    .openings-filter-group select {
        min-width: 150px;
    }
}

@media (max-width: 640px) {
    .why-work-text h2 {
        font-size: 1.6rem;
    }

    .why-work-block h3 {
        font-size: 1.1rem;
    }

    .why-work-main-image {
        height: 250px;
    }

    .why-work-thumb {
        width: 50px;
        height: 38px;
    }

    .why-work-fullscreen {
        width: 38px;
        height: 38px;
        font-size: 0.85rem;
    }

    .why-work-lb-prev { left: 10px; }
    .why-work-lb-next { right: 10px; }

    .why-work-lb-prev,
    .why-work-lb-next {
        width: 40px;
        height: 40px;
    }

    .why-work-lb-main {
        max-width: 95%;
    }

    .openings-header h2 {
        font-size: 1.6rem;
    }

    .openings-filters {
        flex-direction: column;
        align-items: stretch;
    }

    .openings-filter-group select {
        min-width: 100%;
    }

    .opening-meta {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}

/* ================================================
   RESPONSIVE — Mobile stacking for auto-fit grids
   ================================================ */
@media (max-width: 768px) {
    .career-services-grid {
        grid-template-columns: 1fr;
    }
    .internship-opportunities {
        grid-template-columns: 1fr;
    }
    .alumni-grid {
        grid-template-columns: 1fr;
    }
    .employer-partners {
        grid-template-columns: repeat(2, 1fr);
    }
    .career-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .employer-partners {
        grid-template-columns: 1fr;
    }
    .career-stats {
        grid-template-columns: 1fr;
    }
}
