/* =====================================================
   MALLIGE COLLEGE OF PHARMACY – MODERN REDESIGN
   Modern green palette inspired by client mockups.
   This stylesheet OVERRIDES selected sections of
   main-style.css / thilak.css. Keep it loaded LAST.
   ===================================================== */

:root {
    --mp-green: #0f7a35;
    --mp-green-dark: #0a5d27;
    --mp-green-soft: #e6f3eb;
    --mp-green-soft-2: #f3faf5;
    --mp-yellow: #ffc107;
    --mp-navy: #0e2a3b;
    --mp-text: #1c2b39;
    --mp-muted: #5b6b78;
    --mp-line: #e3eae6;
    --mp-bg: #ffffff;
    --mp-radius-lg: 22px;
    --mp-radius-md: 14px;
    --mp-shadow-sm: 0 4px 14px rgba(15, 122, 53, .08);
    --mp-shadow-md: 0 10px 30px rgba(15, 122, 53, .10);
}

/* ---------- Top utility bar ---------- */
.mp-topbar {
    background: var(--mp-green);
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
}

.mp-topbar a {
    color: #fff;
    text-decoration: none;
}

@media only screen and (min-width:760px) {
    .pos-ab {
        position: absolute;
        top: 50%;
        left: 0%;
        right: 0%;
        transform: translate(0%, -50%);
        /* bottom: 0%; */
    }

    .mp-approval-item {
        display: flex;
        align-items: center;
        gap: 14px;
        justify-content: center;
        text-align: left !important;
        padding: 8px 6px;
    }
}


.mp-approval-item {
    text-align: center;
    padding: 8px 6px;
}


.mn-heading .mp-accent {
    color: #0f7a35;
    text-transform: capitalize !important;
}


.mp-topbar a:hover {
    color: var(--mp-yellow);
}

.mp-topbar .mp-topbar-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    align-items: center;
    justify-content: space-between;
}

.mp-topbar .mp-topbar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 22px;
    align-items: center;
}

.mp-topbar .mp-topbar-left .mp-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--mp-yellow);
    font-weight: 600;
}

/*  */

.mp-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #ffcc00, #ff9800);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 0 rgba(255, 152, 0, 0.7);
    animation: pulseGlow 1.8s infinite, floatMove 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.mp-pill i {
    font-size: 16px;
}

/* Hover effect */
.mp-pill:hover {
    transform: scale(1.05);
}

/* Pulse glow */
@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 152, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 152, 0, 0);
    }
}

/* Floating animation */
@keyframes floatMove {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0px);
    }
}

.mp-pill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transform: skewX(-25deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}

/*  */

.mp-topbar .mp-topbar-left span.mp-divider {
    color: rgba(255, 255, 255, .35);
}

.mp-topbar .mp-topbar-right {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 18px;
    align-items: center;
}

.mp-topbar .mp-topbar-right a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

/* ---------- Main header (logo + contact cards + CTA) ---------- */
.mp-header-main {
    background: #fff;
    padding: 18px 0 14px;
    border-bottom: 1px solid var(--mp-line);
}

.mp-header-main .mp-logo {
    max-height: 64px;
    width: auto;
    object-fit: contain;
}

.mp-contact-card {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mp-contact-card .mp-ic {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--mp-green-soft);
    color: var(--mp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.mp-contact-card .mp-ic-label {
    font-size: 13px;
    color: var(--mp-muted);
    margin: 0;
    line-height: 1.2;
}

.mp-contact-card .mp-ic-value {
    font-size: 15px;
    color: var(--mp-text);
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

.mp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all .25s ease;
    border: 2px solid transparent;
    line-height: 1;
    cursor: pointer;
}

.mp-btn-primary {
    background: var(--mp-green);
    color: #fff !important;
    border-color: var(--mp-green);
}

.mp-btn-primary:hover {
    background: var(--mp-green-dark);
    border-color: var(--mp-green-dark);
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--mp-shadow-md);
}

.mp-btn-outline {
    background: #fff;
    color: var(--mp-green) !important;
    border-color: var(--mp-green);
}

.mp-btn-outline:hover {
    background: var(--mp-green);
    color: #fff !important;
}

.mp-btn-light {
    background: #fff;
    color: var(--mp-green) !important;
    border-color: #fff;
}

.mp-btn-light:hover {
    background: var(--mp-green-soft);
    color: var(--mp-green-dark) !important;
}

/* ---------- Navigation ---------- */
.mp-nav-wrap {
    background: #fff;
    border-bottom: 1px solid var(--mp-line);
    box-shadow: 0 4px 14px rgba(0, 0, 0, .03);
    position: sticky;
    top: 0;
    z-index: 1020;
}

.mp-nav-wrap .navbar {
    padding: 0;
}

.mp-nav-wrap .navbar-nav .nav-link {
    color: var(--mp-text);
    font-weight: 600;
    font-size: 14.5px;
    padding: 18px 14px !important;
    text-transform: uppercase;
    letter-spacing: .3px;
    position: relative;
    transition: color .2s ease;
}

.mp-nav-wrap .navbar-nav .nav-link:hover,
.mp-nav-wrap .navbar-nav .nav-link.active,
.mp-nav-wrap .navbar-nav .nav-item.show>.nav-link {
    color: var(--mp-green) !important;
}

.mp-nav-wrap .navbar-nav .nav-link.active::after,
.mp-nav-wrap .navbar-nav .nav-link:hover::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    height: 2px;
    background: var(--mp-green);
    border-radius: 2px;
}

.mp-nav-wrap .dropdown-menu {
    border: 0;
    border-radius: 12px;
    box-shadow: var(--mp-shadow-md);
    padding: 8px;
    margin-top: 0;
}

.mp-nav-wrap .dropdown-item {
    border-radius: 8px;
    padding: 8px 12px;
    font-weight: 500;
    color: var(--mp-text);
}

.mp-nav-wrap .dropdown-item:hover,
.mp-nav-wrap .dropdown-item:focus {
    background: var(--mp-green-soft);
    color: var(--mp-green);
}

/* ---------- Hero ---------- */
.mp-hero {
    background: linear-gradient(135deg, #f3faf5 0%, #ffffff 60%);
    /* padding: 60px 0 80px; */
    overflow: hidden;
    position: relative;
}

.mp-tin {
    background-color: #0f7a35;
    color: white;
    padding: 0.1% 0.9%;
}

.mp-hero .mp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--mp-text);
    border: 1px solid var(--mp-line);
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: var(--mp-shadow-sm);
    margin-bottom: 22px;
}

.mp-hero .mp-hero-badge i {
    color: var(--mp-yellow);
}

.mp-hero h1 {
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--mp-navy);
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.mp-hero h1 .mp-accent {
    color: var(--mp-green);
}

.mp-hero .mp-hero-sub {
    font-size: 17px;
    color: var(--mp-muted);
    margin-bottom: 22px;
    max-width: 520px;
    line-height: 1.6;
}

.mp-hero .mp-course-line {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 14px;
    color: var(--mp-text);
    font-weight: 500;
    margin-bottom: 22px;
}

.mp-hero .mp-course-line .mp-dot {
    width: 5px;
    height: 5px;
    background: var(--mp-green);
    border-radius: 50%;
    display: inline-block;
}

.mp-hero .mp-tag-feature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--mp-green-soft);
    border-radius: 14px;
    padding: 10px 16px;
    margin-bottom: 26px;
}

.mp-hero .mp-tag-feature .mp-tag-ic {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #fff;
    color: var(--mp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.mp-hero .mp-tag-feature .mp-tag-text {
    margin: 0;
    font-size: 14px;
    color: var(--mp-text);
}

.mp-hero .mp-tag-feature .mp-tag-text strong {
    color: var(--mp-green);
}

.mp-hero .mp-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.mp-hero-image-wrap {
    position: relative;
    /* border-radius: 28px; */
    overflow: hidden;
    box-shadow: var(--mp-shadow-md);
    aspect-ratio: 4/3;
    background: var(--mp-green-soft);
}

.mp-hero-image-wrap::before {
    content: "";
    position: absolute;
    top: -40px;
    left: -40px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(15, 122, 53, .08);
    z-index: 0;
}


.bg-img {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
        url(../images/pharma-college-background.jpeg);

    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mp-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* ---------- Section heading ---------- */
.mp-section {

    padding: 70px 0;
}

.mp-section-head {
    text-align: center;
    /* max-width: 760px; */
    margin: 0 auto 48px;
}

.mp-section-head .mp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1px solid var(--mp-green-soft);
    color: var(--mp-green);
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    box-shadow: var(--mp-shadow-sm);
}

.mp-section-head .mp-eyebrow i {
    color: var(--mp-green);
}

.mp-section-head h2 {
    font-size: 35px;
    font-weight: 800;
    color: var(--mp-navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -.5px;
}

.mp-section-head h2 .mp-accent {
    color: var(--mp-green);
}

.mp-section-head h2::after {
    content: "";
    display: block;
    width: 70px;
    height: 3px;
    background: var(--mp-green);
    border-radius: 2px;
    margin: 14px auto 0;
}

.mp-section-head p {
    color: var(--mp-muted);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Left aligned heading variant */
.mp-head-left {
    text-align: left;
    margin: 0 0 24px;
}

.mp-head-left h2::after {
    margin-left: 0;
}

/* ---------- Approvals strip ---------- */
.mp-approvals {
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-sm);
    padding: 26px 18px;
    /* margin-top: -50px; */
    position: relative;
    z-index: 5;
}

.mp-approvals .mp-approvals-title {
    text-align: center;
    color: var(--mp-green);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.mp-approvals .mp-approvals-title::before,
.mp-approvals .mp-approvals-title::after {
    content: "";
    width: 30px;
    height: 1px;
    background: var(--mp-green);
}



.mp-approval-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
}

.mp-approval-item p {
    margin: 0;
    color: var(--mp-text);
    font-weight: 500;
    font-size: 14.5px;
    line-height: 1.35;
    max-width: 170px;
}

/* ---------- About section ---------- */
.mp-about-section {
    background: var(--mp-green-soft-2);
    padding: 80px 0;
    position: relative;
}

.mp-about-card {
    background: #fff;
    border-radius: var(--mp-radius-lg);
    padding: 36px;
    box-shadow: var(--mp-shadow-sm);
    height: 100%;
}

.mp-about-card .mp-eyebrow {
    margin-bottom: 16px;
}

.mp-about-card h2 {
    font-size: clamp(26px, 2.8vw, 38px);
    font-weight: 800;
    color: var(--mp-navy);
    line-height: 1.2;
    margin-bottom: 22px;
    letter-spacing: -.5px;
}

.mp-about-card h2 .mp-accent {
    color: var(--mp-green);
}

.mp-about-row {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
}

.mp-about-row .mp-about-ic {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--mp-green-soft);
    color: var(--mp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    margin-top: 4px;
}

.mp-about-row p {
    color: var(--mp-muted);
    margin: 0;
    line-height: 1.7;
    font-size: 15px;
}

.mp-about-image {
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    box-shadow: var(--mp-shadow-md);
    height: 100%;
    min-height: 380px;
}

.mp-about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Leadership cards */
.mp-leader-card {
    background: #fff;
    border-radius: var(--mp-radius-md);
    padding: 22px 22px 26px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: var(--mp-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.mp-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-md);
}


.mp-leader-card .mp-leader-img {
    width: 90px;
    height: 90px;
    min-width: 90px;
    border-radius: 50%;
    border: 3px solid var(--mp-green);
    padding: 3px;
    background: #fff;
    object-fit: cover;
}

.mp-leader-card .mp-leader-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--mp-navy);
    margin: 0 0 4px;
}

.mp-leader-card .mp-leader-role {
    font-size: 14px;
    color: var(--mp-green);
    font-weight: 600;
    margin: 0 0 8px;
    position: relative;
    padding-bottom: 8px;
}

.mp-leader-card .mp-leader-role::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--mp-green);
    border-radius: 2px;
}

.mp-leader-card .mp-quote-mark {
    position: absolute;
    right: 18px;
    bottom: 14px;
    color: var(--mp-green-soft);
    font-size: 28px;
    line-height: 1;
}

/* ---------- Course cards (programs) ---------- */
.mp-programs-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--mp-green-soft-2) 100%);
    position: relative;
}

.mp-course-card {
    background: #fff;
    border-radius: var(--mp-radius-lg);
    padding: 28px;
    box-shadow: var(--mp-shadow-sm);
    border: 1px solid var(--mp-line);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mp-course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--mp-shadow-md);
    border-color: var(--mp-green);
}

.mp-course-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--mp-line);
}

.mp-course-head .mp-course-ic {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--mp-green-soft);
    color: var(--mp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.mp-course-head h3 {
    margin: 0;
    color: var(--mp-navy);
    font-size: 22px;
    font-weight: 800;
}

.mp-course-head h3 small {
    display: block;
    color: var(--mp-green);
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

.mp-course-meta {
    flex-grow: 1;
    margin-bottom: 22px;
}

.mp-course-meta p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--mp-text);
    margin: 0 0 10px;
    font-size: 14.5px;
    line-height: 1.4;
}

.mp-course-meta p i {
    color: var(--mp-green);
    margin-top: 4px;
}

.mp-course-meta p span {
    color: var(--mp-muted);
}

.mp-course-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mp-course-actions .mp-btn {
    flex: 1;
    padding: 10px 14px;
    font-size: 14px;
    min-width: 120px;
}

/* ---------- Stats / Why Mallige ---------- */
.mp-stats-section {
    padding: 80px 0;
    /* background: #fff; */
    position: relative;
}

.mp-stat-card {
    background: #fff;
    border: 1px solid var(--mp-line);
    border-radius: var(--mp-radius-md);
    padding: 28px 18px;
    text-align: center;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    height: 100%;
}

.mp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-md);
    border-color: var(--mp-green);
}

.mp-stat-card .mp-stat-ic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--mp-green-soft);
    color: var(--mp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 16px;
}

.mp-stat-card .mp-stat-num {
    font-size: 38px;
    font-weight: 800;
    color: var(--mp-green);
    margin: 0 0 4px;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.mp-stat-card .mp-stat-num::after {
    content: "";
    display: block;
    width: 40px;
    height: 2px;
    background: var(--mp-green);
    border-radius: 2px;
    margin: 10px auto 0;
}

.mp-stat-card .mp-stat-label {
    color: var(--mp-text);
    font-size: 15px;
    font-weight: 500;
    margin: 14px 0 0;
}

.mp-strength-row {
    background: var(--mp-green-soft-2);
    border-radius: var(--mp-radius-lg);
    padding: 28px;
    margin-top: 36px;
}

.mp-strength-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mp-strength-item .mp-strength-ic {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    background: #fff;
    color: var(--mp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--mp-shadow-sm);
}

.mp-strength-item p {
    margin: 0;
    color: var(--mp-text);
    line-height: 1.6;
    font-size: 15px;
}

.mp-strength-item p strong,
.mp-strength-item p .mp-accent {
    color: var(--mp-green);
}

.mp-strength-divider {
    width: 1px;
    background: var(--mp-line);
    margin: 0 auto;
    align-self: stretch;
}

/* ---------- Campus Life ---------- */
.mp-campus-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
}

.mp-campus-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}

.mp-campus-card {
    background: #fff;
    border-radius: var(--mp-radius-md);
    overflow: hidden;
    box-shadow: var(--mp-shadow-sm);
    transition: transform .25s ease, box-shadow .25s ease;
    text-align: center;
    border: 1px solid var(--mp-line);
}

.mp-campus-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--mp-shadow-md);
}

.mp-campus-card .mp-campus-img {
    aspect-ratio: 1/1.2;
    overflow: hidden;
    background: var(--mp-green-soft);
}

.mp-campus-card .mp-campus-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.mp-campus-card:hover .mp-campus-img img {
    transform: scale(1.05);
}

.mp-campus-card .mp-campus-body {
    padding: 18px 10px;
}

.mp-campus-card .mp-campus-ic {
    color: var(--mp-green);
    font-size: 22px;
    margin-bottom: 6px;
}

.mp-campus-card .mp-campus-label {
    margin: 0;
    color: var(--mp-text);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .mp-campus-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .mp-campus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ---------- CTA Banner ---------- */
.mp-cta-banner {
    background: linear-gradient(135deg, var(--mp-green) 0%, var(--mp-green-dark) 100%);
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mp-cta-banner h2 {
    color: #fff;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    margin-bottom: 10px;
}

.mp-cta-banner p {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto 24px;
}

.mp-cta-banner .mp-cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---------- Responsive ---------- */
@media (max-width: 991px) {
    .mp-header-main {
        text-align: center;
    }

    .mp-contact-card {
        justify-content: center;
        margin-top: 14px;
    }

    .mp-header-main .mp-cta-row {
        justify-content: center;
        margin-top: 14px;
    }

    .mp-hero {
        padding: 40px 0 60px;
        text-align: center;
    }

    .mp-hero .mp-hero-sub,
    .mp-hero .mp-course-line {
        margin-left: auto;
        margin-right: auto;
    }

    .mp-hero .mp-hero-cta {
        justify-content: center;
    }

    .mp-hero-image-wrap {
        /* margin-top: 30px;
        aspect-ratio: 16/10; */
    }

    .mp-section,
    .mp-about-section,
    .mp-programs-section,
    .mp-stats-section,
    .mp-campus-section {
        padding: 50px 0;
    }

    .mp-about-card {
        padding: 24px;
    }

    .mp-about-image {
        margin-top: 24px;
        min-height: 280px;
    }

    .mp-strength-row>[class*="col-"]+[class*="col-"] {
        margin-top: 18px;
    }
}

@media (max-width: 767px) {

    .mp-section-head h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 20px !important;

    }

    .navbar-collapse .nav-link {
        color: white !important;
    }


    .mp-topbar {
        font-size: 13px;
    }

    .mp-topbar .mp-topbar-right {
        display: none;
    }

    .mp-approvals {
        margin-top: -30px;
        padding: 20px 14px;
    }

    .mp-approval-item {
        justify-content: flex-start;
    }

    .mp-stat-card .mp-stat-num {
        font-size: 30px;
    }
}

/* Dropdown override compatibility */
.mp-nav-wrap .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
    display: block;
}

@media (min-width: 992px) {
    .mp-nav-wrap .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        margin-top: 0 !important;
    }
}