:root {
    --blue: #172fbb;
    --navy: #07164c;
    --ink: #101936;
    --muted: #66708a;
    --line: #e7e9f0;
    --paper: #ffffff;
    --soft: #f3f6fb;
    --gold: #c79b36;
    --green: #13c770;
    --shadow: 0 18px 45px rgba(7, 22, 76, .14);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "DM Sans", Arial, sans-serif;
    color: var(--ink);
    background: var(--paper);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 32px));
    margin-inline: auto;
}

.topbar {
    color: #fff;
    background: var(--blue);
    font-size: 14px;
    font-weight: 700;
}

.topbar__inner {
    min-height: 50px;
    display: flex;
    align-items: center;
    gap: 26px;
}

.topbar nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
}

.topbar select {
    height: 24px;
    min-width: 110px;
    border: 0;
    background: #fff;
    color: #1c2442;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid var(--line);
}

.header-grid {
    min-height: 140px;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 380px);
    align-items: center;
    gap: 28px;
}

.brand {
    display: grid;
    grid-template-columns: 78px 1fr;
    align-items: center;
    gap: 24px;
}

.brand img {
    width: 70px;
}

.brand strong {
    display: block;
    max-width: 760px;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(24px, 3vw, 32px);
    line-height: 1.18;
    color: var(--navy);
    text-transform: uppercase;
}

.brand em,
.brand small {
    display: block;
    margin-top: 5px;
    color: #29304d;
    font-family: Georgia, serif;
}

.search {
    display: flex;
    height: 44px;
    border: 1px solid #cfd4df;
    border-radius: 999px;
    overflow: hidden;
}

.search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 0 18px;
    font: inherit;
    outline: 0;
}

.search button {
    width: 58px;
    border: 0;
    color: #fff;
    background: var(--navy);
    font-size: 25px;
    cursor: pointer;
}

.approval-strip {
    border-bottom: 1px solid var(--line);
    font-family: Georgia, serif;
    font-weight: 700;
    font-style: italic;
}

.approval-strip__inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.main-nav {
    position: sticky;
    top: 0;
    z-index: 20;
    background: var(--navy);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.nav-wrap {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-nav ul {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
}

.main-nav a {
    display: block;
    padding: 22px 11px;
    font-family: Georgia, serif;
    font-weight: 700;
    transition: background .2s ease, color .2s ease;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, .1);
    color: #dfe8ff;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 6px;
    background: transparent;
}

.menu-toggle span {
    display: block;
    height: 2px;
    width: 22px;
    margin: 5px auto;
    background: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    min-height: clamp(360px, 55vw, 560px);
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.03);
    background-position: center;
    background-size: cover;
    transition: opacity .8s ease, transform 5s ease;
}

.slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.slide__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(2, 10, 40, .64), rgba(2, 10, 40, .16) 48%, rgba(2, 10, 40, .08));
}

.slide__content {
    position: relative;
    z-index: 1;
    min-height: clamp(360px, 55vw, 560px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding-bottom: clamp(46px, 8vw, 92px);
    color: #fff;
}

.slide__content p {
    margin: 0 0 9px;
    color: #f8ce6b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
}

.slide__content h1 {
    max-width: 720px;
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(32px, 6vw, 64px);
    line-height: 1.05;
}

.slide__content span {
    max-width: 620px;
    margin-top: 14px;
    font-size: clamp(16px, 2vw, 20px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(7, 22, 76, .65);
    color: #fff;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.slider-btn--prev {
    left: 18px;
}

.slider-btn--next {
    right: 18px;
}

.slider-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    z-index: 3;
    display: flex;
    gap: 9px;
    transform: translateX(-50%);
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-dots .is-active {
    background: #fff;
}

.whatsapp-float,
.share-float {
    position: absolute;
    z-index: 5;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.whatsapp-float {
    left: 30px;
    bottom: 28px;
    padding: 14px 20px;
    background: var(--green);
}

.share-float {
    right: 30px;
    bottom: 86px;
    padding: 12px 20px;
    background: var(--navy);
}

.notice-band {
    background: #eaf4fb;
    border-block: 1px solid #d7e8f3;
}

.notice-band .container {
    min-height: 58px;
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 18px;
    overflow: hidden;
}

.notice-band strong {
    color: var(--navy);
    text-transform: uppercase;
}

.ticker {
    overflow: hidden;
    white-space: nowrap;
}

.ticker span {
    display: inline-block;
    min-width: 100%;
    animation: ticker 24s linear infinite;
}

.section-pad {
    padding: clamp(44px, 7vw, 82px) 0;
}

.section-title {
    margin-bottom: 28px;
    text-align: center;
}

.section-title h2 {
    margin: 0;
    color: var(--navy);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(28px, 4vw, 44px);
}

.section-title span {
    display: block;
    max-width: 760px;
    margin: 12px auto 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.programme-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
    background: #000;
}

.programme-card img {
    width: 100%;
    height: 100%;
    min-height: 240px;
    object-fit: cover;
    opacity: .75;
    transition: transform .5s ease, opacity .5s ease;
}

.programme-card div {
    position: absolute;
    inset: auto 0 0;
    padding: 24px;
    color: #fff;
    background: linear-gradient(transparent, rgba(1, 8, 36, .88));
}

.programme-card h2 {
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.programme-card a {
    color: #f5c85d;
    font-weight: 800;
}

.programme-card:hover img {
    transform: scale(1.08);
    opacity: .92;
}

.stats {
    padding: 44px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), #1836a0);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.stat {
    padding: 20px 14px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 8px;
}

.stat strong {
    display: block;
    font-size: clamp(38px, 5vw, 58px);
    line-height: 1;
}

.stat span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
}

.landing-intro {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 22, 76, .96), rgba(23, 47, 187, .88)),
        url("https://erp.mnlumumbai.edu.in/wp-content/uploads/2026/03/6-scaled.png") center / cover;
    color: #fff;
}

.landing-intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
    pointer-events: none;
}

.intro-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr minmax(260px, 390px);
    gap: clamp(28px, 6vw, 72px);
    align-items: center;
}

.intro-copy h2 {
    max-width: 760px;
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.08;
}

.intro-copy p:not(.eyebrow) {
    max-width: 740px;
    font-size: 18px;
    line-height: 1.8;
    color: #e7edff;
}

.intro-copy .eyebrow {
    color: #f8ce6b;
}

.intro-copy .btn {
    background: #fff;
    color: var(--navy);
}

.intro-stack {
    display: grid;
    gap: 16px;
}

.intro-stack div {
    display: grid;
    grid-template-columns: 70px 1fr;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, .24);
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(10px);
    transition: transform .25s ease, background .25s ease;
}

.intro-stack div:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, .18);
}

.intro-stack strong {
    color: #f8ce6b;
    font-size: 34px;
}

.intro-stack span {
    font-weight: 800;
}

.vc {
    background: var(--soft);
}

.vc-grid {
    display: grid;
    grid-template-columns: minmax(220px, 360px) 1fr;
    gap: clamp(28px, 5vw, 70px);
    align-items: center;
}

.vc-photo img {
    width: min(100%, 360px);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--blue);
    font-weight: 800;
    text-transform: uppercase;
}

.vc-copy h2 {
    margin: 0;
    font-family: "Libre Baskerville", Georgia, serif;
    color: var(--navy);
    font-size: clamp(30px, 4vw, 48px);
}

.vc-copy h3 {
    margin: 8px 0 18px;
    color: var(--muted);
}

.vc-copy p:not(.eyebrow) {
    font-size: 18px;
    line-height: 1.75;
}

.btn {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 20px;
    border-radius: 6px;
    background: var(--navy);
    color: #fff;
    font-weight: 800;
}

.information-hub {
    background: linear-gradient(180deg, #fff 0%, #f5f8fd 100%);
}

.hub-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1.05fr) minmax(300px, .95fr);
    gap: 24px;
    align-items: stretch;
}

.news-feature {
    position: relative;
    min-height: 460px;
    overflow: hidden;
    border-radius: 8px;
    background: #000;
    box-shadow: var(--shadow);
}

.news-feature img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    object-fit: cover;
    opacity: .76;
    transform: scale(1.02);
    transition: transform .7s ease, opacity .7s ease;
}

.news-feature:hover img {
    transform: scale(1.09);
    opacity: .9;
}

.news-feature div {
    position: absolute;
    inset: auto 0 0;
    padding: clamp(24px, 4vw, 38px);
    color: #fff;
    background: linear-gradient(transparent, rgba(2, 10, 40, .95));
}

.card-label {
    display: inline-flex;
    margin: 0 0 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: var(--gold);
    color: #111;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-feature time,
.update-item time {
    display: block;
    color: var(--gold);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
}

.news-feature h3 {
    margin: 8px 0 10px;
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: clamp(26px, 4vw, 42px);
    line-height: 1.1;
}

.news-feature p:not(.card-label) {
    max-width: 660px;
    line-height: 1.7;
}

.news-feature a {
    color: #f8ce6b;
    font-weight: 900;
}

.update-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.update-board {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 12px 30px rgba(7, 22, 76, .08);
}

.board-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--line);
}

.board-head h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Libre Baskerville", Georgia, serif;
    font-size: 22px;
}

.board-head a {
    color: var(--blue);
    font-size: 14px;
    font-weight: 900;
}

.update-item {
    position: relative;
    display: block;
    padding: 18px 0 18px 18px;
    border-bottom: 1px solid var(--line);
    transition: transform .22s ease, border-color .22s ease;
}

.update-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 24px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 6px rgba(23, 47, 187, .08);
}

.update-item:hover {
    transform: translateX(8px);
    border-color: #cdd6f5;
}

.update-item strong {
    display: block;
    margin: 7px 0;
    color: var(--ink);
    line-height: 1.35;
}

.update-item span {
    display: block;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.tender-board .update-item::before {
    background: var(--gold);
    box-shadow: 0 0 0 6px rgba(199, 155, 54, .12);
}

.updates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.panel {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(7, 22, 76, .08);
}

.panel h2 {
    margin: 0 0 16px;
    color: var(--navy);
}

.panel ul {
    margin: 0;
    padding-left: 20px;
}

.panel li {
    margin: 12px 0;
}

.panel p {
    line-height: 1.65;
}

.footer {
    color: #dce4ff;
    background: #050b2c;
}

.footer-grid {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes ticker {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(-100%);
    }
}

@media (max-width: 980px) {
    .topbar__inner,
    .topbar nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .topbar nav {
        margin-left: 0;
    }

    .header-grid {
        grid-template-columns: 1fr;
        padding: 18px 0;
    }

    .card-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .updates-grid,
    .hub-grid,
    .update-columns,
    .intro-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .topbar__inner {
        gap: 10px 16px;
        padding: 10px 0;
        font-size: 13px;
    }

    .topbar nav {
        gap: 12px;
    }

    .brand {
        grid-template-columns: 58px 1fr;
        gap: 14px;
    }

    .brand img {
        width: 56px;
    }

    .brand em,
    .brand small {
        font-size: 13px;
    }

    .approval-strip__inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }

    .nav-wrap {
        justify-content: flex-end;
        min-height: 56px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav ul {
        position: absolute;
        top: 56px;
        left: 0;
        right: 0;
        display: none;
        background: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .main-nav ul.is-open {
        display: block;
    }

    .main-nav a {
        padding: 14px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, .12);
    }

    .slide__shade {
        background: linear-gradient(0deg, rgba(2, 10, 40, .75), rgba(2, 10, 40, .2));
    }

    .slide__content {
        padding-bottom: 74px;
    }

    .slider-btn {
        width: 38px;
        height: 38px;
        font-size: 30px;
    }

    .whatsapp-float {
        left: 12px;
        bottom: 18px;
        padding: 12px 14px;
        font-size: 14px;
    }

    .share-float {
        right: 12px;
        bottom: 74px;
        padding: 10px 14px;
    }

    .notice-band .container {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 10px 0;
    }

    .card-grid,
    .stats-grid,
    .vc-grid {
        grid-template-columns: 1fr;
    }

    .news-feature,
    .news-feature img {
        min-height: 390px;
    }

    .update-board {
        padding: 20px;
    }

    .programme-card,
    .programme-card img {
        min-height: 220px;
    }

    .footer-grid {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 18px 0;
    }
}

@media (max-width: 430px) {
    .topbar nav a:nth-child(2),
    .topbar nav a:nth-child(3),
    .topbar nav a:nth-child(4) {
        display: none;
    }

    .brand strong {
        font-size: 20px;
    }

    .brand {
        align-items: start;
    }

    .search {
        height: 40px;
    }

    .slide__content h1 {
        font-size: 30px;
    }
}
