/* ============================================================
   Marquee Logo Strip
   ============================================================ */
.marquee-wrapper {
    background: #fff;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    overflow: hidden;
    padding: 10px 0;
    width: 100%;
}
.marquee-track {
    display: flex;
    width: max-content;
    will-change: transform;
}
.logo-set {
    display: flex;
    flex-shrink: 0;
}
.marquee-track.left  { animation: scroll-left  30s linear infinite; }
.marquee-track.right { animation: scroll-right 30s linear infinite; }
@keyframes scroll-left {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-25%); }
}
@keyframes scroll-right {
    0%   { transform: translateX(-25%); }
    100% { transform: translateX(0); }
}
.marquee-wrapper:hover .marquee-track { animation-play-state: paused; }
.logo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 250px;
    padding: 5px 15px;
    border-right: 1px solid #f0f0f0;
    flex-shrink: 0;
}
.logo-box img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
}
.logo-box:hover img { opacity: 1; }
.student-count { display: none; }

/* ============================================================
   LPUNEST Scholarship Banner
   ============================================================ */
.lpu-banner-container {
    background-color: #fceeb5;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.banner-text {
    font-size: 22px;
    font-weight: 900;
    color: #000;
    flex: 1;
    white-space: nowrap;
}
.banner-logo {
    flex: 1;
    display: flex;
    justify-content: center;
}
.banner-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}
.banner-cta { display: flex; justify-content: flex-end; }
.apply-btn-nest {
    background-color: #000;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 18px;
    transition: background-color .3s ease;
    white-space: nowrap;
}
.apply-btn-nest:hover { background-color: #333; }

/* ============================================================
   General Layout — Stats, Intro, Headings, Sections
   ============================================================ */
.stats-banner { margin: 0; }
.pathways-innr h3 {
    font-family: inherit;
    font-size: 16px;
    padding: 20px 20px 0;
    line-height: 25px;
    font-weight: 700;
}
.intro { padding: 20px; }
.intro p { font-size: 16px; line-height: 25px; }

/* Shared heading paragraph style */
.main-heading p,
.rank-section .heading p {
    margin: 0 auto 40px;
    font-weight: 400;
    max-width: 1000px;
}
.revolution-section .rev-tagline { max-width: 1000px; margin: 0 auto; }
.placement-company .heading p {
    margin: 30px auto 40px;
    font-weight: 400;
}

/* ============================================================
   Announcement Bar
   ============================================================ */
.announcement-bar {
    background: linear-gradient(125deg, #39b6d8 -20%, #f7d344 50%, #e38330 100%);
    padding: 10px 0 !important;
    text-align: center;
    color: #000;
}
.announcement-bar .topbar-slider { list-style: none; padding: 0; margin: 0; }
.announcement-bar .topbar-slider a {
    color: #000;
    font-weight: 700;
    font-family: inter, sans-serif;
    text-decoration: none !important;
}
.topbar-slider .days,
.topbar-slider .hours,
.topbar-slider .minutes,
.topbar-slider .seconds {
    padding: 5px;
    background: #fff;
    margin: 0 1px;
    display: inline-block;
    border-radius: 3px;
    width: 40px;
    font-weight: 600;
    font-family: inter, sans-serif;
}

/* ============================================================
   Responsive — Breakpoints consolidated
   ============================================================ */
@media (min-width: 960px) {
    .stats-banner { grid-template-columns: 400px 1fr; }
}
@media (max-width: 900px) {
    .lpu-banner-container {
        flex-direction: column;
        border-radius: 20px;
        padding: 30px 20px;
        text-align: center;
    }
    .banner-text {
        white-space: normal;
        margin-bottom: 20px;
        font-size: 20px;
        text-align: center;
    }
    .banner-logo { margin-bottom: 20px; width: 100%; }
    .banner-logo img { max-height: 80px; }
    .banner-cta { justify-content: center; width: 100%; }
    .apply-btn-nest { width: 100%; text-align: center; max-width: 300px; }
}
@media (max-width: 640px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .ai-card ul,
    .ai-card-icon,
    .rev-img-area { display: none; }
    .ai-card-title { margin-bottom: 0; }
}
@media (max-width: 600px) {
    .announcement-bar {
        position: fixed;
        bottom: 0;
        z-index: 9999;
        width: 100%;
        background: #000;
        color: #fff;
    }
    .announcement-bar .topbar-slider a { color: #fff; font-size: 12px; }
    .announcement-bar .topbar-slider .slick-next,
    .announcement-bar .topbar-slider .slick-prev { right: -10px; }
    .topbar-slider .days,
    .topbar-slider .hours,
    .topbar-slider .minutes,
    .topbar-slider .seconds { color: #000; }
    .heading p,
    .main-heading p { margin: 0 auto !important; width: 100%; }
}
