/* =====================================================
   ABOUT PAGE
===================================================== */

:root,
.about-page {
    --mn-blue: #092d5c;
    --mn-blue-dark: #0d3d68;
    --mn-gold: #d29a18;
    --mn-muted: #59636d;
    --mn-heading-font: 'Playfair Display', Georgia, serif;
}

.about-page {
    overflow: hidden;
    background: #ffffff;
}


/* =====================================================
   COMMON CONTAINER
===================================================== */

/* Removed .about-page .container override to inherit global container width (1600px/95%) */


/* =====================================================
   HERO SECTION
===================================================== */

.about-hero {
    position: relative;
    min-height: 640px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    background-image: url("../images/about/about-hero-bg.png");
    background-size: cover;
    background-position: right center;
    background-repeat: no-repeat;
    isolation: isolate;
    padding: 80px 0;
}

/* Faded Image Overlay */
.about-hero-overlay {
    display: none;
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0.20) 100%);
}

/* Hero Content Box (Directly on white space, no square box) */
.about-hero-content {
    width: 100%;
    max-width: 560px;
    padding: 0;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

/* Hero Heading */
.about-hero h1 {
    margin: 0 0 22px 0;
    font-family: var(--mn-heading-font, "Playfair Display", Georgia, serif);
    font-size: clamp(38px, 4.3vw, 54px);
    font-weight: 800;
    line-height: 1.15;
    color: #002d62;
    letter-spacing: -0.5px;
}

.about-hero h1 span {
    display: inline;
    color: #e69500;
}

/* Heading Line */
.about-heading-line,
.section-line {
    width: 70px;
    height: 3px;
    margin: 20px 0;
    background: #F5A623;
}

/* Hero Paragraph */
.about-hero p {
    margin: 0 0 32px 0;
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(15px, 1.1vw, 16.5px);
    line-height: 1.65;
    color: #3b506a;
    max-width: 530px;
}

.about-hero p strong {
    color: #002d62;
    font-weight: 700;
}

/* Hero Actions & Primary Button */
.about-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.about-primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 32px;
    background: #003e8c;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 18px rgba(0, 62, 140, 0.28);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.about-primary-btn .btn-arrow {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.about-primary-btn:hover {
    background: #002a63;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(0, 42, 99, 0.38);
}

.about-primary-btn:hover .btn-arrow {
    transform: translateX(5px);
}


/* =====================================================
   COMPANY OVERVIEW (INCLINE HALF GRADIENT / HALF WHITE)
===================================================== */

.company-overview {

    position: relative;

    padding: 85px 0;

    background: #ffffff;

    overflow: hidden;

}


/* Z Grid */
.about-z-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* Content */
.overview-content {
    padding-right: 10px;
}

.overview-content h2,
.commitment-box h2 {
    margin: 15px 0;
    font-family: "Playfair Display", serif;
    font-size: 50px;
    line-height: 1.1;
    font-weight: 700;
    color: #092d5c;
}

.overview-content h2 em,
.commitment-box h2 em {
    color: #f2a900;
    font-style: italic;
}

.overview-content p,
.commitment-box p {
    margin-bottom: 20px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.4;
    color: #47515b;
}


/* Overview List */

.overview-list {

    padding: 10px 0 0;

    margin: 0;

    list-style: none;

}


.overview-list li {

    display: flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-family: "Inter", sans-serif;

    font-size: 16px;

    color: #303b45;

}


.overview-list i {

    color: #F5A623;

    font-size: 16px;

}


/* Overview Image */

.overview-image {
    height: 520px;
    overflow: hidden;
    border-radius: 0 180px 0 180px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.overview-image:hover img {
    transform: scale(1.04);
}

/* =====================================================
   COMMITMENT SECTION
===================================================== */
.about-commitment {
    padding: 70px 0;
    background: #f4f8fc;
}

/* Image */

.commitment-image {

    height: 620px;

    overflow: hidden;

    border-radius: 18px;

}


.commitment-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

}


/* Right Content */

.commitment-content {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


/* =====================================================
   EXPERIENCE BOX
===================================================== */

.experience-box {

    display: grid;

    grid-template-columns: 170px 1fr;

    align-items: center;

    min-height: 160px;

    padding: 25px 35px;

    background: #0d3d68;

    border-radius: 18px;

    color: #ffffff;

    gap: 25px;


}

/* =====================================================
   EXPERIENCE BADGE IMAGE
===================================================== */

.experience-badge-image {

    width: 150px;

    height: 150px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

}


.experience-badge-image img {

    width: 120%;

    height: 120%;

    display: block;

    object-fit: contain;

}

/* Quote */

.experience-quote {

    position: relative;

    padding-left: 35px;

}


.experience-quote p {

    margin: 0;

    font-family: "Inter", sans-serif;

    font-size: 20px;

    line-height: 1.5;

    font-weight: 600;

}


.quote-mark {

    position: absolute;

    top: -15px;

    left: 0;

    font-family: Georgia, serif;

    font-size: 55px;

    line-height: 1;

}


.quote-end {

    position: relative;

    top: 10px;

    left: 5px;

}


/* =====================================================
   COMMITMENT BOX
===================================================== */

.commitment-box {

    padding: 35px;

    background: #ffffff;

    border-radius: 18px;

    box-shadow:
        0 10px 40px rgba(13, 61, 104, 0.06);

}


.commitment-box h2 {

    font-size: 38px;

}


/* Commitment Features */

.commitment-features {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    margin-top: 30px;

    border-top: 1px solid #e1e5e8;

}


.commitment-feature {

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 20px 10px;

    text-align: center;

    border-right: 1px solid #e1e5e8;

}


.commitment-feature:last-child {

    border-right: none;

}


.commitment-feature i {

    font-size: 26px;

    color: #F5A623;

}

.commitment-feature span {

    font-family: "Inter", sans-serif;

    font-size: 14px;

    line-height: 1.4;

    color: #000000;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .about-hero {
        min-height: 560px;
        background-position: 75% center;
        padding: 70px 0;
    }

    .about-hero-overlay {
        display: block;
    }

    .about-hero-content {
        max-width: 500px;
        position: relative;
        z-index: 1;
    }

    .about-z-grid {
        gap: 40px;
    }

    .overview-image {
        height: 450px;
    }

    .commitment-image {
        height: 550px;
    }

    .experience-box {
        grid-template-columns: 150px 1fr;
    }

    .commitment-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .commitment-feature:nth-child(2) {
        border-right: none;
    }

}


@media (max-width: 767px) {

    .about-hero {
        min-height: auto;
        padding: 60px 0;
        background-position: center right;
    }

    .about-hero-overlay {
        display: block;
        background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.96) 0%,
            rgba(255, 255, 255, 0.90) 100%);
    }

    .about-hero-content {
        width: 100%;
        max-width: 100%;
        margin: 0;
        padding: 0;
    }

    .about-hero h1,
    .overview-content h2,
    .commitment-box h2,
    .mn-journey-header h2,
    .mn-cert-heading h2 {
        font-size: 32px !important;
        margin: 10px 0;
    }

    .about-heading-line {
        margin: 15px 0;
    }

    .about-hero p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .about-primary-btn {
        height: 48px;
        font-size: 13px;
        padding: 0 24px;
    }

    .about-primary-btn span {
        font-size: 18px;
    }

    .about-z-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .overview-content {
        padding-right: 0;
    }

    .overview-image {
        height: 400px;
        order: 2;
    }

    .reverse-z {
        display: flex;
        flex-direction: column;
    }

    .commitment-image {
        width: 100%;
        height: 450px;
    }

    .experience-box {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .experience-badge {
        width: 130px;
        margin: auto;
    }

    .experience-quote {
        padding-left: 0;
    }

    .commitment-box {
        padding: 25px;
    }

    .commitment-box h2 {
        font-size: 32px;
    }

}


@media (max-width: 480px) {

    .commitment-features {
        grid-template-columns: 1fr 1fr;
    }

}

/* =====================================================
   CONTACT PAGE SCROLL REVEAL
===================================================== */

.reveal-left,
.reveal-right,
.reveal-up,
.reveal-down,
.reveal-scale {

    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;

    will-change: opacity, transform;
}


/* FROM LEFT */

.reveal-left {

    transform: translateX(-80px);

}


/* FROM RIGHT */

.reveal-right {

    transform: translateX(80px);

}


/* FROM BOTTOM */

.reveal-up {

    transform: translateY(70px);

}


/* FROM TOP */

.reveal-down {

    transform: translateY(-70px);

}


/* SCALE */

.reveal-scale {

    transform: scale(0.92);

}


/* ACTIVE */

.reveal-left.active,
.reveal-right.active,
.reveal-up.active,
.reveal-down.active,
.reveal-scale.active {

    opacity: 1;

    transform: translate(0) scale(1);

}


/* DELAYS */

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

.reveal-delay-3 {
    transition-delay: 0.24s;
}

.reveal-delay-4 {
    transition-delay: 0.32s;
}

.reveal-delay-5 {
    transition-delay: 0.40s;
}

.reveal-delay-6 {
    transition-delay: 0.48s;
}

.reveal-delay-7 {
    transition-delay: 0.56s;
}


/* MOBILE */

@media (max-width: 768px) {

    .reveal-left,
    .reveal-right {

        transform: translateY(50px);

    }

    .reveal-left.active,
    .reveal-right.active {

        transform: translateY(0);

    }

}

/* =========================================================
   JOURNEY SECTION
========================================================= */

.mn-journey {

    position: relative;

    width: 100%;

    padding: 90px 0 70px;

    background: #ffffff;

    overflow: hidden;
}


/* =========================================================
   JOURNEY BACKGROUND
========================================================= */

.mn-journey-bg {

    position: absolute;

    inset: 0;

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    opacity: .18;

    z-index: 0;

    pointer-events: none;
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.mn-journey-wrapper {

    width: 100%;

    position: relative;

    z-index: 2;
}


/* =========================================================
   HEADER
========================================================= */

.mn-journey-header {

    width: min(850px, 90%);

    margin: 0 auto 0;

    text-align: center;
}


/* SECTION LABEL WITH DECORATIVE GOLD LINES */

.mn-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 15px;
    color: var(--mn-gold, #d29a18);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mn-section-label::before,
.mn-section-label::after {
    content: "";
    display: inline-block;
    width: 35px;
    height: 2px;
    background: var(--mn-gold, #d29a18);
}


/* MAIN HEADING */

.mn-journey-header h2 {

    margin: 0;

    color: #092d5c;

    font-family: var(--mn-heading-font);

    font-size: 50px;

    line-height: 1.1;

    font-weight: 700;
}


.mn-journey-header h2 em {

    color: #f2a900;

    font-style: italic;
}


/* DESCRIPTION */

.mn-journey-header p {

    max-width: 720px;

    margin: 20px auto 0;

    color: #111111;

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   TIMELINE SCROLL AREA
========================================================= */

.mn-timeline-scroll {

    width: 100%;

    overflow-x: auto;

    overflow-y: visible;

    padding: 195px 45px 20px;

    margin-top: -135px;

    scrollbar-width: none;
}


.mn-timeline-scroll::-webkit-scrollbar {

    display: none;
}


/* =========================================================
   TIMELINE
========================================================= */

.mn-journey-timeline {

    width: max-content;

    min-width: 1250px;

    margin: 0 auto;

    display: flex;

    align-items: flex-start;

    position: relative;

}


/* =========================================================
   HORIZONTAL LINE
========================================================= */

.mn-journey-timeline::before {

    content: "";

    position: absolute;

    left: 0;

    right: 0;

    top: 68px;

    height: 3px;

    background: #173f73;

    z-index: 1;
}


/* =========================================================
   JOURNEY ITEM
========================================================= */

.mn-journey-item {

    width: 155px;

    min-width: 155px;

    position: relative;

    text-align: center;

    z-index: 3;

    margin-right: 15px;
}


.mn-journey-item:last-child {

    margin-right: 0;
}


/* =========================================================
   YEAR
========================================================= */

.mn-journey-year {

    color: #327ec4;

    font-size: 22px;

    font-weight: 700;

    line-height: 1;

    margin-bottom: 15px;
}


/* =========================================================
   ICON CIRCLE
========================================================= */

.mn-journey-dot {

    width: 60px;

    height: 60px;

    margin: 0 auto;

    border-radius: 50%;

    border: 2px solid #173f73;

    background: #ffffff;

    display: flex;

    align-items: center;

    justify-content: center;

    position: relative;

    z-index: 5;

    color: #173f73;

    font-size: 23px;

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(10, 50, 90, .08);

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}


/* GOLD DOT BELOW CIRCLE */

.mn-journey-dot::after {

    content: "";

    position: absolute;

    width: 10px;

    height: 10px;

    background: #f2a900;

    border: 2px solid #ffffff;

    border-radius: 50%;

    bottom: -8px;

    left: 50%;

    transform: translateX(-50%);
}


/* =========================================================
   TITLE
========================================================= */

.mn-journey-title {

    margin-top: 18px;

    color: #092d5c;

    font-size: 14px;

    font-weight: 700;

    line-height: 1.45;

    min-height: 42px;
}


/* =========================================================
   HOVER COMMENT BOX
========================================================= */

.mn-journey-tooltip {

    position: absolute;

    right: 50%;

    left: auto;

    bottom: calc(100% + 25px);

    transform: translateX(30px) translateY(12px);

    width: 250px;

    min-height: 145px;

    padding: 20px;

    background: #ffffff;

    border: 2px solid #1b1b1b;

    border-radius: 12px;

    box-shadow: 4px 4px 0 #1b1b1b;

    text-align: left;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

    transition:
        opacity .3s ease,
        transform .3s ease,
        visibility .3s ease;

    z-index: 50;
}


/* SMALL ARROW */

.mn-journey-tooltip::after {

    content: "";

    position: absolute;

    right: 21px;

    left: auto;

    bottom: -10px;

    width: 18px;

    height: 18px;

    background: #ffffff;

    border-right: 2px solid #1b1b1b;

    border-bottom: 2px solid #1b1b1b;

    transform: rotate(45deg);
}


/* TOOLTIP HEADING */

.mn-journey-tooltip strong {

    display: block;

    margin-bottom: 10px;

    color: #092d5c;

    font-size: 15px;

    line-height: 1.35;
}


/* TOOLTIP DESCRIPTION */

.mn-journey-tooltip p {

    margin: 0;

    color: #111111;

    font-size: 13px;

    line-height: 1.65;
}


/* =========================================================
   HOVER
========================================================= */

.mn-journey-item:hover .mn-journey-tooltip {

    opacity: 1;

    visibility: visible;

    transform: translateX(30px) translateY(0);
}


/* First item tooltip points to the right to prevent cut-off */
.mn-journey-item:first-child .mn-journey-tooltip {
    right: auto;
    left: 50%;
    transform: translateX(-30px) translateY(12px);
}

.mn-journey-item:first-child:hover .mn-journey-tooltip {
    transform: translateX(-30px) translateY(0);
}

.mn-journey-item:first-child .mn-journey-tooltip::after {
    right: auto;
    left: 21px;
}


.mn-journey-item:hover .mn-journey-dot {

    background: #173f73;

    color: #ffffff;

    transform: translateY(-4px);
}


/* =========================================================
   2026 IMAGE CARD
========================================================= */

.mn-2026-highlight {

    width: min(650px, 90%);

    margin: 25px auto 0;

    position: relative;

    z-index: 5;

    display: block;

    overflow: hidden;
}


.mn-2026-single-image {

    display: block;

    width: 100%;

    height: auto;

    object-fit: contain;
}


/* =========================================================
   REVEAL ANIMATION
========================================================= */

.mn-journey-item.reveal-up {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);

    will-change: opacity, transform;
}


.mn-journey-item.reveal-up.active {

    opacity: 1;

    transform: translateY(0);
}


/* =========================================================
   TIMELINE SEQUENTIAL STAGGER
========================================================= */

.mn-journey-item:nth-child(1) {
    transition-delay: .08s;
}

.mn-journey-item:nth-child(2) {
    transition-delay: .22s;
}

.mn-journey-item:nth-child(3) {
    transition-delay: .36s;
}

.mn-journey-item:nth-child(4) {
    transition-delay: .50s;
}

.mn-journey-item:nth-child(5) {
    transition-delay: .64s;
}

.mn-journey-item:nth-child(6) {
    transition-delay: .78s;
}

.mn-journey-item:nth-child(7) {
    transition-delay: .92s;
}

.mn-journey-item:nth-child(8) {
    transition-delay: 1.06s;
}


/* =========================================================
   2026 REVEAL (APPEARS RIGHT AFTER 2025 COMPLETES)
========================================================= */

.mn-2026-highlight.reveal-up {

    opacity: 0;

    transform: translateY(50px);

    transition:
        opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);

    transition-delay: 1.25s;
}


.mn-2026-highlight.reveal-up.active {

    opacity: 1;

    transform: translateY(0);
}

/* =========================================================
   CERTIFICATIONS MAIN SECTION
========================================================= */

.mn-certifications-section {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}


/* =========================================================
   UPPER CERTIFICATION SECTION (#1B3A6B GRADIENT BACKGROUND)
========================================================= */

.mn-certifications-top {
    width: 100%;
    padding: 85px 4% 75px;
    position: relative;
    background: linear-gradient(135deg, #0d2242 0%, #1B3A6B 52%, #143564 100%);
    overflow: hidden;
}

.mn-certifications-top::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 15%, rgba(255, 193, 7, 0.08) 0%, transparent 65%);
    pointer-events: none;
}


/* =========================================================
   HEADING
========================================================= */

.mn-cert-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px;
    position: relative;
    z-index: 2;
}

.mn-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    color: #FFC107;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

.mn-section-label::before,
.mn-section-label::after {
    background: #FFC107;
}

.mn-cert-heading h2 {
    margin: 0;
    font-family: var(--mn-heading-font, 'Playfair Display', serif);
    font-size: 50px;
    line-height: 1.15;
    font-weight: 700;
    color: #ffffff;
}

.mn-cert-heading h2 em,
.mn-cert-heading h2 span {
    color: #FFC107;
    font-style: italic;
}

.mn-cert-heading p {
    max-width: 720px;
    margin: 14px auto 0;
    font-size: 16px;
    line-height: 1.6;
    color: #d1dded;
    font-family: 'Inter', sans-serif;
}


/* =========================================================
   ALL CERTIFICATION CARDS
========================================================= */

.mn-all-certificates {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    position: relative;
    z-index: 2;
}


/* =========================================================
   CERTIFICATION CARD & SMOOTH REVEAL ANIMATION
========================================================= */

.mn-cert-card {
    min-height: 295px;
    padding: 26px 14px 22px;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
    position: relative;
}

.mn-cert-card.reveal-up {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.mn-cert-card.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.mn-all-certificates .mn-cert-card:nth-child(1) {
    transition-delay: 0.10s;
}

.mn-all-certificates .mn-cert-card:nth-child(2) {
    transition-delay: 0.28s;
}

.mn-all-certificates .mn-cert-card:nth-child(3) {
    transition-delay: 0.46s;
}

.mn-all-certificates .mn-cert-card:nth-child(4) {
    transition-delay: 0.64s;
}

.mn-all-certificates .mn-cert-card:nth-child(5) {
    transition-delay: 0.82s;
}

.mn-all-certificates .mn-cert-card:nth-child(6) {
    transition-delay: 1.00s;
}

.mn-all-certificates .mn-cert-card:nth-child(7) {
    transition-delay: 1.18s;
}

.mn-cert-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 22px 45px rgba(0, 0, 0, 0.35);
    border-color: #FFC107;
}


/* =========================================================
   CERTIFICATION LOGO
========================================================= */

.mn-cert-logo {
    width: 86px;
    height: 86px;
    border: 2.5px solid #1B3A6B;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #1B3A6B;
    background: #ffffff;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(27, 58, 107, 0.12);
}

.mn-logo-text-udyam {
    font-size: 17px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.mn-logo-text-gst {
    font-size: 21px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.mn-nsic-logo {
    gap: 2px;
}

.mn-nsic-hindi {
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    font-family: sans-serif;
}

.mn-nsic-eng {
    font-size: 20px;
    font-weight: 900;
    line-height: 1;
    font-style: italic;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
}

.mn-depm-logo {
    padding: 0;
}

.mn-depm-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mn-iso-logo {
    padding: 0;
}

.mn-iso-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.mn-logo-text-bifma {
    font-size: 19px;
    font-weight: 800;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.5px;
}

.mn-zed-logo {
    position: relative;
}

.mn-zed-text {
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.mn-zed-bar {
    display: block;
    width: 36px;
    height: 3.5px;
    margin-top: 4px;
    background: linear-gradient(to right,
            #e53935 0% 33%,
            #d1d5db 33% 66%,
            #43a047 66% 100%);
    border-radius: 1px;
}


/* =========================================================
   CARD TEXT (CLEAR, CRISP & BIGGER)
========================================================= */

.mn-cert-card h3 {
    margin: 0 0 4px;
    color: #1B3A6B;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.3px;
}

.mn-cert-card h4 {
    margin: 0 0 8px;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mn-cert-card p {
    margin: 0 0 14px;
    min-height: 44px;
    color: #1e293b;
    font-size: 13.5px;
    line-height: 1.5;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}


/* =========================================================
   GOLD LINE
========================================================= */

.mn-cert-line {
    width: 40px;
    height: 3px;
    background: #FFC107;
    border-radius: 2px;
    margin-top: auto;
}


/* =========================================================
   LOWER CERTIFICATE HIGHLIGHT SECTION
========================================================= */

/* =========================================================
   LOWER CERTIFICATE HIGHLIGHT SECTION
========================================================= */

.mn-certificate-highlights {
    width: 100%;
    padding: 50px 4% 15px;
    background: #f3f8ff;
    position: relative;
    overflow: hidden;
}


/* =========================================================
   LOWER HEADING
========================================================= */

.mn-certificate-highlight-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-bottom: 12px;
}

.mn-highlight-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--mn-blue, #092d5c);
    letter-spacing: 1.5px;
    font-family: 'Inter', sans-serif;
}

.mn-highlight-line {
    width: 50px;
    height: 2px;
    background: var(--mn-gold, #d29a18);
    position: relative;
}

.mn-highlight-line::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--mn-gold, #d29a18);
    transform: rotate(45deg);
    top: -2px;
}

.mn-highlight-line:first-child::after {
    right: -2px;
}

.mn-highlight-line:last-child::after {
    left: -2px;
}

.mn-highlight-description {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--mn-muted, #59636d);
    font-size: 15.5px;
    line-height: 1.7;
    font-family: 'Inter', sans-serif;
}


/* =========================================================
   3D SHELF SHOWCASE
========================================================= */

.mn-shelf-showcase {
    width: min(1150px, 100%);
    height: 510px;
    margin: 0 auto;
    position: relative;
    perspective: 1400px;
}


/* =========================================================
   SHELF IMAGE
========================================================= */

.mn-shelf-image {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1080px;
    z-index: 1;
}

.mn-shelf-image img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}


/* =========================================================
   CERTIFICATES (Closer Gap & Centered on Shelf)
========================================================= */

.mn-shelf-certificates {
    position: absolute;
    left: 50%;
    bottom: 210px;
    transform: translateX(-50%);
    width: 840px;
    z-index: 5;
    display: flex;
    justify-content: center;
    gap: 16px;
    align-items: flex-end;
}


/* =========================================================
   SINGLE CERTIFICATE
========================================================= */

.mn-shelf-certificate {
    position: relative;
    width: 190px;
    cursor: pointer;
    transform-origin: bottom center;
    transform: rotateX(14deg);
    transition: transform 0.5s ease, filter 0.5s ease;
}


/* =========================================================
   CERTIFICATE FRAME (Backside Lower Shadow Only)
========================================================= */

.mn-cert-frame {
    position: relative;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #d5d5d5;
    border-radius: 4px;
    /* SHADOW ON LOWER BACKSIDE ONLY (No negative Y offset) */
    box-shadow:
        0 14px 28px rgba(0, 0, 0, 0.28),
        0 26px 48px rgba(0, 0, 0, 0.18),
        0 4px 10px rgba(0, 0, 0, 0.12);
}

.mn-cert-frame::before {
    content: "";
    position: absolute;
    inset: 4px;
    border: 1px solid rgba(184, 124, 18, 0.35);
    pointer-events: none;
}

.mn-cert-frame img {
    display: block;
    width: 100%;
    height: 285px;
    object-fit: cover;
    object-position: top;
}


/* =========================================================
   HOVER — CERTIFICATE COMES FORWARD
========================================================= */

.mn-shelf-certificate:hover {
    transform: translateY(-25px) rotateX(0deg) scale(1.06);
    z-index: 50;
}

.mn-shelf-certificate:hover .mn-cert-frame {
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.35),
        0 38px 70px rgba(0, 0, 0, 0.22);
}


/* =========================================================
   CERTIFICATE SHADOW (Under bottom edge)
========================================================= */

.mn-cert-shadow {
    position: absolute;
    left: 4%;
    bottom: -10px;
    width: 92%;
    height: 18px;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 60%, transparent 80%);
    border-radius: 50%;
    filter: blur(4px);
    z-index: -1;
}


/* =========================================================
   RESPONSIVE / BREAKPOINTS
========================================================= */

@media (max-width: 1200px) {
    .mn-all-certificates {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }

    .mn-shelf-certificates {
        width: 820px;
        gap: 18px;
    }
}

@media (max-width: 991px) {
    .mn-cert-heading h2 {
        font-size: 38px;
    }

    .mn-cert-card {
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .mn-certifications-top {
        padding: 55px 15px 45px;
    }

    .mn-cert-heading h2 {
        font-size: 32px;
    }

    .mn-cert-heading p {
        font-size: 14px;
    }

    .mn-all-certificates {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .mn-cert-card {
        min-height: 230px;
        padding: 18px 10px 14px;
    }

    .mn-cert-card:last-child {
        grid-column: 2;
    }

    .mn-cert-logo {
        width: 72px;
        height: 72px;
        margin-bottom: 12px;
    }

    .mn-logo-text-udyam,
    .mn-logo-text-gst,
    .mn-iso-text,
    .mn-zed-text {
        font-size: 16px;
    }

    .mn-certificate-highlights {
        padding: 40px 15px 15px;
    }

    .mn-certificate-highlight-heading {
        gap: 10px;
    }

    .mn-highlight-title {
        font-size: 17px;
        text-align: center;
    }

    .mn-highlight-line {
        width: 30px;
    }

    .mn-highlight-description {
        margin-bottom: 5px;
    }

    .mn-shelf-showcase {
        height: 300px;
        overflow: hidden;
    }

    .mn-shelf-certificates {
        left: 50%;
        transform: translateX(-50%);
        width: 96%;
        bottom: 95px;
        gap: 3%;
    }

    .mn-shelf-certificate {
        width: 22%;
    }

    .mn-cert-frame {
        padding: 4px;
    }

    .mn-cert-frame img {
        height: auto;
        aspect-ratio: 2 / 3;
    }

    .mn-shelf-image {
        left: 50%;
        transform: translateX(-50%);
        width: 105%;
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .mn-all-certificates {
        grid-template-columns: repeat(3, 1fr);
        max-width: 100%;
        margin: 0 auto;
        gap: 8px;
    }

    .mn-cert-card {
        padding: 10px 5px;
        min-height: 180px;
    }

    .mn-cert-logo {
        width: 50px;
        height: 50px;
    }

    .mn-cert-card p {
        font-size: 10px;
    }
}

/* =====================================================
   STRENGTH + QUALITY SECTION
===================================================== */
.about-strength {
    padding: 50px 0;
    background: #f8fafc;
}

.strength-wrapper {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 100px;
    align-items: flex-start;
}

/* Images Grid */
.strength-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 10px;
}

.strength-images img,
.strength-images .img-placeholder {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e1e8f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Right Content */
.strength-content {
    display: flex;
    flex-direction: column;
}

.strength-content h2 {
    font-size: 38px;
    font-family: "Playfair Display", serif;
    color: #1B3A6B;
    line-height: 1.2;
    margin-bottom: 30px;
}

.strength-content p {
    font-size: 15px;
    color: #657083;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Numbered List */
.strength-list {
    margin-top: auto;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.strength-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.strength-list .num {
    font-size: 22px;
    font-weight: 700;
    color: #1B3A6B;
    background: #eef3f9;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
}

.strength-list .text {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-left: 20px;
}

.strength-list .text::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 2.5px;
    height: 55px;
    background: #F5A623;
    border-radius: 2px;
}

.strength-list .text strong {
    font-size: 16px;
    color: #111;
}

.strength-list .text span {
    font-size: 14px;
    color: #777;
    line-height: 1.5;
}

@media(max-width: 992px) {
    .strength-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media(max-width: 768px) {
    .strength-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .strength-list {
        grid-template-columns: 1fr;
    }

    .strength-content h2 {
        font-size: 28px;
    }
}