.home-slider {
    overflow: hidden;
}

.home-slider .hero-slide {
    min-height: 70vh;
}

/* Fullscreen Video Logic */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video-container iframe {
    width: 100vw;
    height: 56.25vw;
    /* 16:9 ratio */
    min-height: 100vh;
    min-width: 177.77vh;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-button {
    line-height: 1 !important;
}

/* STATS */
.stats {
    padding: 20px !important;
    background-color: var(--off-primary-color);
}

.stats .container {
    padding: 0 !important;
}

.stat-item {
    text-align: center;
    padding: 10px;
}

.stat-item:not(:last-child) {
    border-right: 1px solid var(--dark-color);
}

.stat-num {
    font-size: 40px;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-color);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: 4px;
}

/* SECTION HELPERS */
.section {
    padding: 68px 0;
}

/* ABOUT PILLS */
.about-pill {
    background: var(--bg-lighter);
    border: 1px solid var(--gray-color);
    border-radius: 10px;
    padding: 20px;
    height: 100%;
    margin-bottom: 20px;
}

.about-pill h6,
.about-pill .about-pill-title {
    margin: 0 0 6px;
    color: var(--primary-color);
}

.about-pill p {
    font-size: 14px;
    color: var(----text-color);
    margin: 0;
    line-height: 1.6;
}

@media (max-width:767px) {
    .about-pill {
        margin: 10px 0;
    }
}

.recruiter-logo {
    height: 42px;
    object-fit: contain;
    transition: all .2s;
}

/* ── INDUSTRIAL PARTNERS ── */
.partners-section {
    background: var(--off-light-color);
}

.partner-card {
    background: var(--light-color);
    border: 1px solid var(--gray-color);
    border-radius: 8px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 110px;
    transition: all .2s;
}

.partner-card:hover {
    box-shadow: 0 8px 25px rgba(240, 90, 40, .12);
    border-color: var(--primary-color);
}

.partner-card img {
    max-height: 54px;
    max-width: 160px;
    object-fit: contain;
}


/* ── RECRUITERS ── */
.recruiters-section {
    background: var(--light-color);
    padding: 60px 0 !important;
}

.recruiters-section .container {
    padding: 0 !important;
}

.recruiter-track-wrap {
    overflow: hidden;
}

.recruiter-marquee {
    overflow: hidden;
    width: 100%;
}

.recruiter-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: marquee 28s linear infinite;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.recruiter-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}


/* ── PLACEMENTS GALLERY ── */
.placements-section {
    background: var(--off-primary-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 200px 200px;
    gap: 10px;
}

.gallery-grid .g-item {
    overflow: hidden;
    border-radius: 6px;
}

.gallery-grid .g-item:first-child {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.gallery-grid .g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.gallery-grid .g-item:hover img {
    transform: scale(1.05);
}

@media (max-width:767px) {
    .gallery-grid {
        display: flex;
        flex-direction: column;
    }
}

/* Sidebar */
.sidebar-card {
    width: 260px;
    background: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
}

.sidebar-header {
    background: var(--off-primary-color);
    padding: 16px 20px;
}

.sidebar-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-color);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 10px;
    margin-bottom: 0;
}

.course-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.course-list li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: var(--text-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.15s;
}

.course-list li a:hover {
    background: var(--off-primary-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    text-decoration: none;
}

.course-list li a svg {
    width: 17px;
    height: 17px;
    fill: var(--primary-color);
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 14px 18px 18px;
    border-top: 1px solid var(--gray-color);
    background: var(--bg-lighter);
}

.btn-talk {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 0;
    background: var(--primary-color);
    color: var(--light-color) !important;
    font-size: 14px;
    font-weight: 800;
    border-radius: 40px;
    text-decoration: none;
    transition: background 0.15s, transform 0.15s;
}

.btn-talk:hover {
    background: var(--shade-primary-color);
    transform: translateY(-1px);
    text-decoration: none;
    color: var(--light-color);
}

.btn-talk svg {
    width: 16px;
    height: 16px;
    fill: var(--light-color);
}