/* Landing page — full-screen job fair hero */
.landing-shell {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    color: #fff;
}

.landing-shell.overlay1::after {
    content: "";
    position: absolute;
    z-index: -1;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 25, 53, 0.88) 0%,
        rgba(0, 25, 53, 0.62) 42%,
        rgba(0, 25, 53, 0.28) 100%
    );
}

.landing-navbar {
    padding: 10px 40px;
    z-index: 10;
}

.landing-navbar .navbar-brand img {
    height: 52px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
}

.landing-navbar .navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    padding: 8px 16px;
    letter-spacing: 0.02em;
}

.landing-navbar .navbar-nav .nav-link:hover,
.landing-navbar .navbar-nav .nav-link:focus {
    color: #ffd300;
}

.landing-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.landing-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    line-height: 1.2;
    cursor: pointer;
}

.landing-btn:hover {
    transform: translateY(-1px);
}

.landing-btn-sm {
    min-height: 40px;
    padding: 8px 18px;
    font-size: 14px;
}

.landing-btn-lg {
    min-height: 50px;
    padding: 12px 26px;
    font-size: 15px;
}

.landing-btn-primary {
    background-color: #ffd300;
    color: #001935;
    border-color: #ffd300;
}

.landing-btn-primary:hover,
.landing-btn-primary:focus {
    background-color: #ffe566;
    color: #001935;
    border-color: #ffe566;
}

.landing-btn-ghost {
    background-color: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.85);
}

.landing-btn-ghost:hover,
.landing-btn-ghost:focus {
    background-color: #fff;
    color: #001935;
    border-color: #fff;
}

.landing-navbar .navbar-toggler {
    border: 0;
    padding: 6px;
    box-shadow: none;
}

.landing-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.landing-toggler-icon {
    display: block;
    width: 26px;
    height: 2px;
    background: #ffd300;
    position: relative;
}

.landing-toggler-icon::before,
.landing-toggler-icon::after {
    content: "";
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #ffd300;
}

.landing-toggler-icon::before {
    top: -7px;
}

.landing-toggler-icon::after {
    top: 7px;
}

.landing-stage {
    flex: 1;
    display: grid;
    grid-template-columns: minmax(300px, 40%) minmax(0, 1fr);
    gap: 36px;
    align-items: stretch;
    padding: 8px 40px 16px;
    min-height: 0;
}

.landing-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    min-width: 0;
}

.landing-badge {
    display: inline-block;
    align-self: flex-start;
    background: rgba(255, 211, 0, 0.16);
    border: 1px solid #ffd300;
    color: #ffd300;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}

.landing-title {
    font-size: clamp(30px, 3.6vw, 48px);
    font-weight: 800;
    line-height: 1.12;
    color: #fff;
    margin: 0 0 14px;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.landing-tagline {
    font-size: 16px;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 26px;
    max-width: 460px;
}

.landing-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.landing-stat {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 12px 18px;
    min-width: 128px;
    backdrop-filter: blur(8px);
}

.landing-stat-value {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #ffd300;
    line-height: 1.1;
}

.landing-stat-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 4px;
}

.landing-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 0;
    align-self: flex-start;
}

.landing-sponsors {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    align-self: center;
    margin-top: 48px;
    padding: 0;
}

.landing-companies {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.landing-companies-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-right: 4px;
}

.landing-company-logo {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    object-fit: contain;
    padding: 4px;
    border: 2px solid rgba(255, 255, 255, 0.7);
}

.landing-company-more {
    font-size: 13px;
    font-weight: 700;
    color: #ffd300;
}

.landing-visual {
    min-width: 0;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.landing-slider-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: 4 / 3;
    height: auto;
    flex: 0 1 auto;
    border-radius: 28px;
    overflow: hidden;
    background: #001935;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.landing-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.45s ease;
}

.landing-slide {
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #001935;
}

.landing-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.landing-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #ffd300;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    z-index: 2;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

.landing-slider-btn:hover {
    background: #ffe566;
}

.landing-slider-prev {
    left: 16px;
}

.landing-slider-next {
    right: 16px;
}

.landing-dots {
    position: absolute;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.landing-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 0;
    padding: 0;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
}

.landing-dot.is-active {
    background: #ffd300;
    width: 22px;
    border-radius: 999px;
}

.landing-sponsors-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 13px;
    margin: 0;
    white-space: nowrap;
    text-align: center;
}

.landing-sponsor-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-sponsor-item {
    background: #fff;
    border-radius: 12px;
    width: 120px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 10px;
}

.landing-sponsor-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@media (max-width: 991px) {
    .landing-navbar {
        padding: 8px 16px;
    }

    .landing-navbar .navbar-collapse {
        background: rgba(0, 25, 53, 0.94);
        border-radius: 16px;
        padding: 16px;
        margin-top: 8px;
    }

    .landing-nav-actions {
        margin-top: 12px;
        flex-wrap: wrap;
    }

    .landing-stage {
        grid-template-columns: 1fr;
        padding: 8px 16px 12px;
        gap: 18px;
    }

    .landing-copy {
        justify-content: flex-start;
        padding-top: 12px;
    }

    .landing-sponsors {
        align-self: center;
        margin-top: 32px;
    }

    .landing-visual {
        min-height: 0;
    }

    .landing-slider-card {
        min-height: 0;
        border-radius: 20px;
    }

    .landing-title {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .landing-stat {
        min-width: calc(50% - 6px);
        flex: 1;
    }

    .landing-btn-lg {
        width: 100%;
    }

    .landing-cta {
        flex-direction: column;
    }
}
