.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
}

:root {
    --blue: #1a3c6e;
    --accent: #e85d2f;
    --light: #f7f5f2;
    --mid: #e5e2dd;
    --text: #1c1c1c;
    --muted: #6b6b6b;
}

/* 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;
}

.sec-label {
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 6px;
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    color: var(--blue);
    margin-bottom: 14px;
}

.bg-soft {
    background: var(--light);
}

/* 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(--muted);
    margin: 0;
    line-height: 1.6;
}

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

/* DEPT CARDS */
.dept-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--mid);
    transition: box-shadow .2s;
}

.dept-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
}

.dept-card img {
    width: 100%;
    height: 185px;
    object-fit: cover;
}

.dept-card-body {
    padding: 20px;
}

.dept-card-body h5 {
    font-size: 1.05rem;
    color: var(--blue);
    margin-bottom: 6px;
}

.dept-card-body p {
    font-size: .83rem;
    color: var(--muted);
    margin: 0;
}

/* COURSE CARDS */
.course-card {
    background-color: var(--off-primary-color);
    border-radius: 10px;
    padding: 25px;
    height: 100%;
    transition: box-shadow .2s, border-color .2s;
    margin-bottom: 20px;
}

.course-card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.course-card .c-icon {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.course-card .cource-title {
    color: var(--primary-color);
    margin-bottom: 6px;
}

.course-card p {
    font-size: 18px;
    color: var(--dark-color);
    line-height: 1.6;
    margin: 0;
}

.course-tag {
    display: inline-block;
    font-size: .7rem;
    font-weight: 600;
    background: var(--light-color);
    border-radius: 3px;
    padding: 3px 8px;
    margin-top: 12px;
    color: var(--primary-color);
}

/* FEATURES */
.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.feat-item i {
    color: var(--accent);
    font-size: .9rem;
    margin-top: 3px;
    min-width: 16px;
}

.feat-item span {
    font-size: .9rem;
    line-height: 1.55;
}

/* GALLERY */
.gallery-img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    border-radius: 8px;
}

/* LOGOS */
.partner-logo {
    height: 38px;
    object-fit: contain;
    opacity: .7;
}

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

.btn-accent {
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 4px;
    border: none;
    font-size: .9rem;
}

.btn-accent:hover {
    background: #c94c20;
    color: #fff;
}

.btn-outline-w {
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff;
    font-weight: 500;
    padding: 11px 28px;
    border-radius: 4px;
    font-size: .9rem;
}

.btn-outline-w:hover {
    background: rgba(255, 255, 255, .1);
    color: #fff;
}

.btn-outline-blue {
    border: 1px solid var(--blue);
    color: var(--blue);
    font-size: .84rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 4px;
}

.btn-outline-blue:hover {
    background: var(--blue);
    color: #fff;
}

/* ── 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;
    }
}