/* =====================================================
   ABOUT PAGE STYLES
   Append these to your existing modern-design.css.
   They reuse the --mp-* CSS variables already defined
   at the top of modern-design.css.
   ===================================================== */

/* ---------- Page banner / breadcrumb hero ---------- */
.mp-page-banner {
    position: relative;
    background: linear-gradient(135deg, #0a5d27 0%, #0f7a35 60%, #14a04a 100%);
    color: #fff;
    padding: 80px 0 90px;
    overflow: hidden;
}

.mp-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255, 255, 255, .1) 0, transparent 35%),
        radial-gradient(circle at 10% 80%, rgba(255, 255, 255, .08) 0, transparent 30%);
    pointer-events: none;
}

.mp-page-banner .mp-banner-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, .2);
    padding: 6px 18px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 18px;
    color: #fff;
}

.mp-page-banner h1 {
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 14px;
    letter-spacing: -1px;
    color: #fff;
}

.mp-page-banner h1 .mp-accent-yellow {
    color: var(--mp-yellow);
}

.mp-page-banner p {
    font-size: 17px;
    color: rgba(255, 255, 255, .9);
    max-width: 560px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.mp-page-banner .mp-breadcrumb {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    color: rgba(255, 255, 255, .85);
    font-size: 14.5px;
    margin-top: 8px;
}

.mp-page-banner .mp-breadcrumb a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
}

.mp-page-banner .mp-breadcrumb a:hover {
    color: var(--mp-yellow);
}

.mp-page-banner .mp-breadcrumb i {
    font-size: 11px;
    opacity: .7;
}

.mp-page-banner .mp-banner-side {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--mp-radius-lg);
    padding: 28px 22px;
    backdrop-filter: blur(8px);
}

.mp-page-banner .mp-banner-side h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-page-banner .mp-banner-side h3 i {
    color: var(--mp-yellow);
}

.mp-page-banner .mp-banner-side ul {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.mp-page-banner .mp-banner-side ul li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .92);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mp-page-banner .mp-banner-side ul li:last-child {
    border-bottom: 0;
}

.mp-page-banner .mp-banner-side ul li i {
    color: var(--mp-yellow);
    font-size: 12px;
}

/* ---------- Intro about block ---------- */
.mp-about-intro {
    padding: 80px 0;
    background: #fff;
}

.mp-about-intro .mp-intro-image-wrap {
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    box-shadow: var(--mp-shadow-md);
    position: relative;
    aspect-ratio: 4 / 3;
}

.mp-about-intro .mp-intro-image-wrap::after {
    content: "";
    position: absolute;
    bottom: -22px;
    right: -22px;
    width: 110px;
    height: 110px;
    background: var(--mp-green-soft);
    border-radius: 22px;
    z-index: -1;
}

.mp-about-intro .mp-intro-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
}

.mp-about-intro .mp-intro-image-wrap:hover img {
    transform: scale(1.04);
}

.mp-about-intro p {
    color: var(--mp-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}

.mp-about-intro .mp-intro-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 26px;
}

.mp-about-intro .mp-intro-stat {
    text-align: center;
    padding: 16px 8px;
    background: var(--mp-green-soft-2);
    border-radius: var(--mp-radius-md);
    border: 1px solid var(--mp-green-soft);
}

.mp-about-intro .mp-intro-stat strong {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--mp-green);
    line-height: 1;
}

.mp-about-intro .mp-intro-stat span {
    display: block;
    font-size: 13px;
    color: var(--mp-muted);
    margin-top: 6px;
}

/* ---------- Vision & Mission cards ---------- */
.mp-vm-section {
    /* background: var(--mp-green-soft-2); */
    /* "C:\xampp\htdocs\pharmacy-2\" */
    background-image: url('../images/about-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 70px 0;
}


.mp-section-head p {
    color: black !important;
}

.mp-vm-card {
    /* background: #fff; */
    background-color: rgba(15, 122, 53, 0.2);
    backdrop-filter: blur(25px);
    border-radius: var(--mp-radius-lg);
    padding: 38px 30px;
    box-shadow: var(--mp-shadow-sm);
    position: relative;
    height: 100%;
    border: 1px solid var(--mp-line);
    transition: transform .25s ease, box-shadow .25s ease;
    overflow: hidden;
}

.mp-vm-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--mp-green) 0%, var(--mp-green-dark) 100%);
}

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

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

.mp-vm-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: var(--mp-navy);
    margin-bottom: 12px;
    position: relative;
    padding-bottom: 12px;
}

.mp-vm-card h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--mp-green);
    border-radius: 2px;
}

.mp-vm-card p {
    color: var(--mp-muted);
    line-height: 1.75;
    margin: 0;
    font-size: 15.5px;
}

/* ---------- Management quote cards ---------- */
.mp-management-section {
    padding: 80px 0;
    background: #fff;
}

.mp-quote-card {
    background: #fff;
    border-radius: var(--mp-radius-lg);
    box-shadow: var(--mp-shadow-sm);
    border: 1px solid var(--mp-line);
    overflow: hidden;
    margin-bottom: 32px;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: stretch;
}

.mp-quote-card.mp-quote-reverse {
    grid-template-columns: 1fr 320px;
}

.mp-quote-card .mp-quote-image {
    background: linear-gradient(135deg, var(--mp-green) 0%, var(--mp-green-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    position: relative;
}

.mp-quote-card.mp-quote-reverse .mp-quote-image {
    order: 2;
}

.mp-quote-card .mp-quote-image img {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .15);
    background: #fff;
}

.mp-quote-card .mp-quote-body {
    padding: 38px 36px;
    position: relative;
}

.mp-quote-card .mp-quote-body::before {
    content: "\201C";
    position: absolute;
    top: 0;
    right: 26px;
    font-size: 120px;
    line-height: 1;
    color: var(--mp-green-soft);
    font-family: Georgia, serif;
    font-weight: 800;
    pointer-events: none;
}

.mp-quote-card .mp-quote-body h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--mp-navy);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.mp-quote-card .mp-quote-body h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--mp-green);
    border-radius: 2px;
}

.mp-quote-card .mp-quote-body p {
    color: var(--mp-muted);
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 15px;
}

.mp-quote-card .mp-quote-author {
    border-top: 1px dashed var(--mp-line);
    padding-top: 18px;
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.mp-quote-card .mp-quote-author .mp-author-bar {
    width: 4px;
    height: 36px;
    background: var(--mp-green);
    border-radius: 2px;
}

.mp-quote-card .mp-quote-author .mp-author-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--mp-navy);
    margin: 0;
    line-height: 1.2;
}

.mp-quote-card .mp-quote-author .mp-author-role {
    font-size: 14px;
    color: var(--mp-green);
    font-weight: 600;
    margin: 4px 0 0;
}

@media (max-width: 767px) {

    .mp-quote-card,
    .mp-quote-card.mp-quote-reverse {
        grid-template-columns: 1fr;
    }

    .mp-quote-card .mp-quote-image {
        padding: 24px;
    }

    .mp-quote-card.mp-quote-reverse .mp-quote-image {
        order: 0;
    }

    .mp-quote-card .mp-quote-image img {
        width: 150px;
        height: 150px;
    }

    .mp-quote-card .mp-quote-body {
        padding: 28px 22px;
    }

    .mp-about-intro .mp-intro-stats {
        grid-template-columns: 1fr;
    }
}

/* ---------- Feature alternating rows (Faculty / Clinical / Research) ---------- */
.mp-feature-section {
    padding: 70px 0;
    background-image: url(../images/about-bg.png);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mp-feature-row {
    background: #fff;
    border-radius: var(--mp-radius-lg);
    overflow: hidden;
    box-shadow: var(--mp-shadow-sm);
    border: 1px solid var(--mp-line);
    margin-bottom: 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
}

.mp-feature-row.mp-feature-reverse .mp-feature-image {
    order: 2;
}

.mp-feature-row .mp-feature-image {
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, var(--mp-green) 0%, var(--mp-green-dark) 100%);
}

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

.mp-feature-row .mp-feature-body {
    padding: 36px 34px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mp-feature-row .mp-feature-num {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--mp-green-soft);
    color: var(--mp-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 14px;
}

.mp-feature-row .mp-feature-body h3 {
    font-size: 24px;
    font-weight: 800;
    color: var(--mp-navy);
    margin-bottom: 14px;
}

.mp-feature-row .mp-feature-body p {
    color: var(--mp-muted);
    line-height: 1.75;
    margin-bottom: 18px;
}

.mp-feature-row .mp-feature-body ul {
    padding-left: 0;
    list-style: none;
    margin: 0 0 4px;
}

.mp-feature-row .mp-feature-body ul li {
    padding: 6px 0 6px 26px;
    color: var(--mp-text);
    font-size: 14.5px;
    position: relative;
}

.mp-feature-row .mp-feature-body ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 7px;
    color: var(--mp-green);
    font-size: 12px;
}

@media (max-width: 767px) {

    .mp-feature-row,
    .mp-feature-row.mp-feature-reverse {
        grid-template-columns: 1fr;
    }

    .mp-feature-row.mp-feature-reverse .mp-feature-image {
        order: 0;
    }

    .mp-feature-row .mp-feature-body {
        padding: 26px 22px;
    }
}

/* ---------- About FAQ accordion ---------- */
.mp-faq-section {
    padding: 70px 0;
    background: #fff;
}

.mp-faq-section .accordion-item {
    background: #fff;
    border: 1px solid var(--mp-line) !important;
    border-radius: var(--mp-radius-md) !important;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--mp-shadow-sm);
}

.mp-faq-section .accordion-button {
    background: #fff;
    color: var(--mp-navy);
    font-weight: 600;
    font-size: 16px;
    padding: 18px 20px;
    border-radius: var(--mp-radius-md) !important;
    box-shadow: none !important;
}

.mp-faq-section .accordion-button:not(.collapsed) {
    background: var(--mp-green-soft);
    color: var(--mp-green);
}

.mp-faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) saturate(100%) invert(28%) sepia(82%) saturate(584%) hue-rotate(98deg) brightness(95%) contrast(95%);
}

.mp-faq-section .accordion-body {
    color: var(--mp-muted);
    line-height: 1.7;
    padding: 0 20px 20px;
    text-align: left;
}