/* ===================================================
   CAREER MAIN HOME — career-home.css
   =================================================== */

/* === JOB LISTING FILTER BAR === */
.jl-filter-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    border-radius: 14px;
    padding: 10px 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.jl-filter-icon {
    color: #5f2ded;
    font-size: 16px;
    flex-shrink: 0;
}

.jl-filter-select {
    flex: 1;
    background: transparent;
    border: none;
    color: #374151;
    font-size: 14px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
}

.jl-filter-select option {
    background: #ffffff;
    color: #374151;
}

.jl-filter-btn {
    background: linear-gradient(135deg, #5f2ded, #8b5cf6);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    padding: 8px 22px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.jl-filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(95,45,237,0.3);
}

/* === JOB LISTING CARDS === */
.jl-card {
    position: relative;
    background: #ffffff;
    border: 1px solid #eaecf0;
    border-radius: 18px;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.jl-card-glow {
    position: absolute;
    top: -60px; right: -60px;
    width: 160px; height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95,45,237,0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}

.jl-card:hover {
    transform: translateY(-6px);
    border-color: rgba(95,45,237,0.3);
    box-shadow: 0 16px 40px rgba(95,45,237,0.1), 0 2px 8px rgba(0,0,0,0.04);
}

.jl-card:hover .jl-card-glow { opacity: 1; }

.jl-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.jl-badge {
    background: rgba(95,45,237,0.08);
    color: #5f2ded;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    border: 1px solid rgba(95,45,237,0.15);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
}

.jl-expired {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.jl-expired i { margin-right: 3px; }

.jl-company {
    color: #6b7280;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.jl-title {
    color: #111827;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
    flex: 1;
}

.jl-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #f3f4f6;
}

.jl-applicant {
    color: #9ca3af;
    font-size: 12px;
    font-weight: 500;
}

.jl-applicant i { margin-right: 4px; color: #5f2ded; }

.jl-detail-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #5f2ded, #8b5cf6);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.25s;
    letter-spacing: 0.3px;
}

.jl-detail-btn:hover {
    color: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 4px 14px rgba(95,45,237,0.35);
}

/* === EMPTY STATE === */
.jl-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #fafbff;
    border-radius: 20px;
    border: 1.5px dashed rgba(95,45,237,0.2);
    text-align: center;
}

.jl-empty-icon {
    width: 80px; height: 80px;
    background: rgba(95,45,237,0.08);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 36px;
    color: #5f2ded;
}

.jl-empty h5 { font-weight: 700; color: #1e293b; margin-bottom: 8px; }
.jl-empty p  { color: #94a3b8; font-size: 14px; margin: 0; max-width: 300px; }

/* === TECH PARTNERSHIP SECTION === */
.tp-section {
    position: relative;
    padding: 80px 0 90px;
    background: #080c14;
    overflow: hidden;
}

.tp-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.055) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.tp-glow-tr {
    position: absolute;
    top: -120px; right: -100px;
    width: 420px; height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(95,45,237,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.tp-glow-bl {
    position: absolute;
    bottom: -100px; left: -80px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(250,196,58,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.tp-scan {
    position: absolute;
    top: 0; left: -220px;
    width: 220px; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(250,196,58,0.035), transparent);
    animation: tp-scan-anim 9s linear infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes tp-scan-anim {
    0%   { left: -220px; }
    100% { left: 105%; }
}

.tp-header {
    text-align: center;
    margin-bottom: 52px;
    position: relative;
    z-index: 1;
}

.tp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fac43a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.tp-eyebrow::before,
.tp-eyebrow::after {
    content: '';
    width: 36px; height: 1px;
    background: linear-gradient(90deg, transparent, #fac43a);
}

.tp-eyebrow::after {
    background: linear-gradient(270deg, transparent, #fac43a);
}

.tp-title {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px;
    line-height: 1.2;
}

.tp-title em {
    font-style: normal;
    background: linear-gradient(90deg, #fac43a, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tp-desc {
    color: rgba(255,255,255,0.38);
    font-size: 14px;
    margin: 0;
}

.tp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
    gap: 14px;
    position: relative;
    z-index: 1;
}

.tp-tile {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 14px 18px;
    cursor: default;
    transition: background 0.35s, border-color 0.35s, transform 0.35s, box-shadow 0.35s;
    opacity: 0;
    transform: translateY(18px);
    animation: tp-appear 0.5s ease forwards;
    animation-delay: var(--i, 0s);
    overflow: hidden;
}

@keyframes tp-appear {
    to { opacity: 1; transform: translateY(0); }
}

.tp-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: radial-gradient(circle at 50% 50%, rgba(250,196,58,0.12) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.35s;
}

.tp-tile:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(250,196,58,0.5);
    transform: translateY(-6px);
    box-shadow: 0 0 0 1px rgba(250,196,58,0.12),
                0 20px 45px rgba(0,0,0,0.45),
                0 0 24px rgba(250,196,58,0.07);
}

.tp-tile:hover::after { opacity: 1; }

.tp-tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: filter 0.35s, transform 0.35s;
    position: relative;
    z-index: 1;
}

.tp-tile:hover img {
    filter: drop-shadow(0 0 8px rgba(250,196,58,0.3));
    transform: scale(1.05);
}

.tp-counter {
    text-align: center;
    margin-top: 52px;
    position: relative;
    z-index: 1;
}

.tp-counter-inner {
    display: inline-flex;
    align-items: center;
    gap: 28px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 50px;
    padding: 14px 36px;
}

.tp-counter-item {
    color: rgba(255,255,255,0.45);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
}

.tp-counter-item strong {
    display: block;
    color: #fac43a;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3px;
}

.tp-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.09);
}

/* === HERO CAROUSEL === */
.hero-carousel-wrap {
    width: 100%;
    aspect-ratio: 1920 / 600;
    height: auto;
    max-height: 600px;
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    margin-left: auto;
    margin-right: auto;
    background: #111;
}

@media (max-width: 992px) {
    .hero-carousel-wrap {
        margin-top: 70px;
    }
    .hero-carousel-wrap .slide-content {
        bottom: 50px;
        left: 6%;
        max-width: 80%;
    }
    .hero-carousel-wrap .slide-content h2 {
        font-size: 28px;
    }
    .hero-carousel-wrap .hero-prev,
    .hero-carousel-wrap .hero-next {
        width: 36px;
        height: 36px;
    }
    .hero-carousel-wrap .hero-prev { left: 12px; }
    .hero-carousel-wrap .hero-next { right: 12px; }
    .hero-carousel-wrap .hero-counter {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-carousel-wrap {
        aspect-ratio: 4 / 5;
    }
    .hero-carousel-wrap .slide-content h2 {
        font-size: 20px;
    }
    .hero-carousel-wrap .slide-content .slide-tag {
        font-size: 9px;
        padding: 4px 10px;
    }
}

.hero-carousel-wrap .swiper,
.hero-carousel-wrap .swiper-wrapper,
.hero-carousel-wrap .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-carousel-wrap .swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-carousel-wrap .slide-bg-blur {
    position: absolute;
    inset: -20px;
    background-size: cover;
    background-position: center;
    filter: blur(18px) brightness(0.5) saturate(1.2);
    transform: scale(1.1);
    z-index: 0;
}

.hero-carousel-wrap .slide-bg {
    position: absolute;
    inset: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-carousel-wrap .slide-overlay {
    display: none;
}

.hero-carousel-wrap .slide-content {
    position: absolute;
    bottom: 90px;
    left: 8%;
    z-index: 3;
    color: #fff;
    max-width: 620px;
}

.hero-carousel-wrap .slide-content .slide-tag {
    display: inline-block;
    background: #fac43a;
    color: #222;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 3px;
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s ease 0.2s;
}

.hero-carousel-wrap .slide-content h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin: 0;
    text-shadow: 0 2px 24px rgba(0,0,0,0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease 0.4s;
}

.hero-carousel-wrap .swiper-slide-active .slide-content .slide-tag,
.hero-carousel-wrap .swiper-slide-active .slide-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.hero-carousel-wrap .hero-prev,
.hero-carousel-wrap .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-carousel-wrap .hero-prev { left: 28px; }
.hero-carousel-wrap .hero-next { right: 28px; }

.hero-carousel-wrap .hero-prev:hover,
.hero-carousel-wrap .hero-next:hover {
    background: rgba(250,196,58,0.75);
    border-color: #fac43a;
    transform: translateY(-50%) scale(1.1);
}

.hero-carousel-wrap .hero-prev svg,
.hero-carousel-wrap .hero-next svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    stroke-width: 2.5;
    fill: none;
}

.hero-carousel-wrap .hero-pagination {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-carousel-wrap .hero-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.45);
    opacity: 1;
    transition: all 0.4s ease;
    margin: 0 !important;
}

.hero-carousel-wrap .hero-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: #fac43a;
}

.hero-carousel-wrap .hero-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, #fac43a, #ff8c00);
    z-index: 10;
    transition: width linear;
}

.hero-carousel-wrap .hero-counter {
    position: absolute;
    bottom: 22px;
    right: 8%;
    z-index: 10;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-carousel-wrap .hero-counter span {
    color: #fac43a;
    font-size: 18px;
}

/* === FEATURE CARDS === */
.feature-cards-area {
    padding: 60px 0;
    background: #fcfcfc;
}

.feature-card-item {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid #f0f0f0;
}

.feature-card-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
}

.feature-card-img {
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 25px 25px 0 0;
}

.feature-card-img img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.feature-card-item:hover .feature-card-img img {
    transform: scale(1.03);
}

.feature-card-body {
    padding: 30px;
}

.feature-card-body h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card-body p {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* === SLIDER POPUP MODAL === */
.slider-popup-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.85);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-popup-modal.show {
    display: flex;
    opacity: 1;
}

.slider-popup-modal img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-popup-modal.show img {
    transform: scale(1);
}

.slider-popup-close {
    position: absolute;
    top: 25px; right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1000000;
}

.slider-popup-close:hover {
    color: #ff5e14;
}

/* === AGENDA SECTION === */
.hitech-agenda-container {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(95,45,237,0.1);
    border-radius: 25px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.hitech-agenda-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.hitech-agenda-header i {
    font-size: 24px;
    color: #5f2ded;
    text-shadow: 0 0 10px rgba(95,45,237,0.3);
}

.hitech-agenda-header h4 {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, rgba(95,45,237,0.3), transparent);
    margin-left: 10px;
}

.hitech-agenda-scroll {
    max-height: 550px;
    overflow-y: auto;
    padding-right: 10px;
}

.hitech-agenda-scroll::-webkit-scrollbar { width: 4px; }
.hitech-agenda-scroll::-webkit-scrollbar-thumb {
    background: rgba(95,45,237,0.2);
    border-radius: 10px;
}

.hitech-agenda-card {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border-radius: 18px;
    margin-bottom: 15px;
    border: 1px solid #f0f0f0;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    cursor: pointer;
}

.hitech-agenda-card:hover {
    transform: translateX(5px);
    border-color: #5f2ded;
    box-shadow: 0 10px 25px rgba(95,45,237,0.1);
}

.agenda-date {
    background: #f8f9ff;
    min-width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

.agenda-date .day {
    font-size: 20px;
    font-weight: 800;
    color: #5f2ded;
    line-height: 1;
}

.agenda-date .month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #666;
}

.agenda-info { flex-grow: 1; }

.agenda-type {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.type-badge {
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.seminar-theme .type-badge {
    background: rgba(95,45,237,0.1);
    color: #5f2ded;
}

.hiring-theme .type-badge {
    background: rgba(0,210,255,0.1);
    color: #00d2ff;
}

.agenda-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 5px;
    line-height: 1.4;
}

.agenda-meta {
    font-size: 11px;
    color: #777;
    display: flex;
    gap: 10px;
}

.card-action {
    display: flex;
    align-items: center;
    color: #ccc;
    transition: color 0.3s;
}

.hitech-agenda-card:hover .card-action { color: #5f2ded; }

.no-agenda {
    text-align: center;
    padding: 40px 0;
    color: #aaa;
}

.no-agenda i {
    font-size: 40px;
    margin-bottom: 10px;
    display: block;
}

.year {
    font-size: 10px;
    color: #999;
    font-weight: 600;
}
