/* ==================================================
   ABOUT PAGE — HERO + STICKY NAV
================================================== */

.about-page {
    background: var(--paper);
}

.about-hero {
    position: relative;
    padding: 100px 0 88px;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(ellipse 60% 80% at 100% 0%, rgba(255, 154, 74, 0.28), transparent 55%),
        radial-gradient(ellipse 40% 50% at 0% 100%, rgba(28, 77, 132, 0.5), transparent 50%),
        linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 52%, #1c4d84 100%);
}

.about-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
    opacity: 0.45;
}

.about-breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 32px;
    font-size: 14px;
    opacity: 0.85;
}

.about-breadcrumb a {
    color: #fff;
}

.about-breadcrumb a:hover {
    color: var(--orange);
}

.about-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 40px;
    align-items: stretch;
}

.about-hero-content {
    max-width: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-tag {
    display: inline-flex;
    align-items: center;
    align-self: flex-start;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.about-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(2.35rem, 4.8vw, 3.55rem);
    line-height: 1.08;
    margin: 0 0 20px;
    color: #fff;
    letter-spacing: -0.02em;
}

.about-hero h1 span {
    color: var(--orange);
}

.about-hero-content > p {
    max-width: 540px;
    font-size: 1.05rem;
    line-height: 1.8;
    opacity: 0.92;
    margin: 0 0 28px;
}

.about-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-btn-ghost {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-weight: 600;
    transition: 0.25s;
}

.about-btn-ghost:hover {
    background: #fff;
    color: var(--navy);
}

.about-hero-panel {
    border-radius: 28px;
    background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(16px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.about-hero-panel-inner {
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.about-hero-year {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 12px;
    opacity: 0.9;
}

.about-hero-year span {
    color: var(--orange);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.about-hero-panel-inner > p {
    margin: 0 0 28px;
    line-height: 1.7;
    opacity: 0.88;
    font-size: 0.98rem;
}

.about-hero-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: auto;
}

.about-hero-feature {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(13, 23, 47, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-hero-feature .feature-value {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--orange);
}

.about-hero-feature .feature-label {
    font-size: 0.85rem;
    opacity: 0.8;
    text-align: right;
}

/* Sticky nav */
.about-nav {
    position: sticky;
    top: 80px;
    z-index: 100;
    background: rgba(var(--surface-rgb), 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(var(--ink), .08);
    box-shadow: 0 8px 24px rgba(var(--ink), 0.04);
}

body.mobile-nav-open .about-nav {
    z-index: 1;
    pointer-events: none;
}

.about-tabs {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 0;
    scrollbar-width: none;
}

.about-tabs::-webkit-scrollbar {
    display: none;
}

.about-tab-link {
    position: relative;
    display: block;
    padding: 18px 14px;
    color: var(--page-text);
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: 0.3s;
    font-size: 0.92rem;
}

.about-tab-link:hover,
.about-tab-link.active {
    color: var(--orange);
}

.about-tab-link.active::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 50px 50px 0 0;
}

.about-section {
    scroll-margin-top: 140px;
}

.about-page .section-header {
    margin-bottom: 36px;
}

.about-page .section-tag,
.about-tag-on-dark {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    background: #fff5ea;
    color: #a51a01 !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-tag-on-dark {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.about-subtitle-on-dark {
    color: rgba(255, 255, 255, 0.78) !important;
}

.about-section-head-dark .heading-lg {
    color: #fff;
}

.about-page .section-head {
    max-width: 720px;
    margin-bottom: 2rem;
}

.about-page .section-description,
.about-page .section-subtitle {
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0.5rem 0 0;
    max-width: 640px;
}

.about-page .section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    flex-wrap: wrap;
}

.about-overview-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    gap: 48px;
    align-items: start;
}

.about-overview-aside .heading-md {
    margin: 0 0 16px;
    color: var(--page-text);
}

.about-overview-kicker {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1.05rem;
    margin: 0;
    max-width: 280px;
}

.about-overview-aside-line {
    width: 48px;
    height: 4px;
    border-radius: 4px;
    background: var(--orange);
    margin-top: 28px;
}

.about-overview-copy {
    max-width: none;
    margin: 0;
    padding: 8px 0 0;
}

.about-overview-copy p {
    color: #182544C2;
    line-height: 1.85;
    font-size: 1.02rem;
    margin: 0 0 1.15rem;
}

.about-overview-lead {
    font-size: 1.12rem !important;
    color: var(--page-text) !important;
    font-weight: 500;
}

.about-overview-copy p:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-hero-grid,
    .about-overview-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-overview-kicker {
        max-width: none;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 72px 0 56px;
    }

    .about-hero-actions .btn,
    .about-btn-ghost {
        width: 100%;
        text-align: center;
    }

    .about-tab-link {
        padding: 16px 12px;
        font-size: 0.88rem;
    }
}

/* ==================================================
   ABOUT OVERVIEW (legacy helpers)
================================================== */

.about-stats {
    margin-top: 3rem;
}

.about-stats .stat-cell {
    border-top: 1px solid rgba(var(--ink), 0.08);
    padding-top: 1.5rem;
}

.about-stats .value {
    margin-bottom: 0.35rem;
}

.about-stats .label {
    color: var(--text-muted);
}

.mission-para,
.mission-para-lg {
    max-width: none;
}

/* ==================================================
   VISION & MISSION
================================================== */
.vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(242, 108, 33, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
}

.vm-top h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    color: var(--page-text);
    margin: 0 0 0.85rem;
}

.vm-card p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(var(--ink), 0.82);
    margin: 0;
}

.vm-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 2.5rem;
}

.vm-card {
    position: relative;
    background: var(--surface);
    padding: 2.25rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vm-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), #ffb347);
}

.vm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}

.vm-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

@media (max-width: 991px) {
    .vm-cards {
        grid-template-columns: 1fr;
    }

    .vm-card {
        padding: 2rem;
    }
}

/* =====================================================
   Our Highlights (Consolidated)
===================================================== */

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.highlight-card {
    position: relative;
    background: var(--surface);
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    text-align: left;
    border: 1px solid rgba(var(--ink), 0.06);
    box-shadow: 0 10px 28px rgba(var(--ink), 0.04);
    transition: 0.25s;
    overflow: hidden;
}

.highlight-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), transparent);
    opacity: 0;
    transition: 0.25s;
}

.highlight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 44px rgba(var(--ink), 0.1);
    border-color: rgba(242, 108, 33, 0.18);
}

.highlight-card:hover::after {
    opacity: 1;
}

.highlight-card h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    color: var(--page-text);
    margin: 0 0 0.45rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.highlight-card span {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.45;
    display: block;
}

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

@media (max-width: 576px) {
    .highlight-grid {
        grid-template-columns: 1fr;
    }
}

/* Consolidated */

/* =====================================================
   GRO SCORE 3.0
===================================================== */
.gro-score-wrapper {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}
.gro-card {
    background: var(--navy);
    color: #fff;
    padding: 3rem;
    border-radius: 24px;
}
.gro-card h3 {
    color: #fff;
    margin-bottom: 1.25rem;
}
.gro-card p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 2rem;
}
.gro-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.gro-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}
.gro-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}

.gro-diagram {
    background: var(--surface);
    padding: 2rem;
    border-radius: 24px;
}

.gro-diagram img {
    height: auto;
    max-height: 420px;
    width: 100%;
    object-fit: contain;
    display: block;
}

.gro-node {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: var(--surface);
    border: 3px solid var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

@media (max-width: 991px) {
    .gro-score-wrapper {
        grid-template-columns: 1fr;
    }
}

/* GroScore */

/* =====================================================
   SECTOR FOCUSED
===================================================== */
.sectorSwiper {
    margin-top: 3rem;
    overflow: hidden;
}

.sector-slide-card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(var(--ink), 0.08);
    transition: 0.3s;
    cursor: pointer;
    height: 100%;
}

.sector-slide-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.sector-slide-card img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.sector-slide-card:hover img {
    transform: scale(1.05);
}

.sector-slide-card h3 {
    padding: 1.15rem 1.25rem 1.35rem;
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--page-text);
}

.slider-nav {
    display: flex;
    gap: 0.75rem;
}

.slider-nav button {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: var(--surface);
    color: var(--page-text);
    transition: 0.25s;
    box-shadow: 0 8px 24px rgba(var(--ink), 0.08);
}

.slider-nav button:hover {
    background: var(--orange);
    color: #fff;
}

/* SECTOR FOCUSED */

/* =====================================================
   OUR TEAM
===================================================== */
.team-section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 0.5rem;
}

.team-section-header .section-head {
    margin-bottom: 0;
    max-width: 640px;
}

.team-tabs {
    display: flex;
    justify-content: flex-start;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin: 2rem 0 2rem;
    padding: 6px;
    background: rgba(var(--surface-rgb), 0.7);
    border: 1px solid rgba(var(--ink), 0.06);
    border-radius: 999px;
    width: fit-content;
    max-width: 100%;
}

.team-tab {
    border: none;
    background: transparent;
    color: var(--page-text);
    padding: 0.8rem 1.35rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: 0.25s;
    cursor: pointer;
}

.team-tab.active {
    background: #A13110;
    color: #fff;
    box-shadow: 0 8px 20px rgba(242, 108, 33, 0.28);
}

.team-tab:hover:not(.active) {
    background: rgba(242, 108, 33, 0.08);
    color: var(--orange-deep);
}

.team-panes {
    min-height: 420px;
}

.team-card {
    background: var(--surface);
    flex-direction: column;
    display: flex;
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s;
    height: 100%;
    border: 1px solid rgba(var(--ink), 0.06);
    box-shadow: 0 12px 32px rgba(var(--ink), 0.05);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(var(--ink), 0.12);
    border-color: rgba(242, 108, 33, 0.18);
}

.team-image {
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    background: linear-gradient(180deg, var(--page-bg) 0%, var(--surface) 100%);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: 0.45s;
}

.team-card:hover img {
    transform: scale(1.04);
}

.team-content {
    padding: 1.35rem 1.35rem 1.45rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-content h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--page-text);
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.designation {
    color: var(--text-muted);
    line-height: 1.5;
    display: block;
    font-size: 0.9rem;
    min-height: 2.7em;
    flex: 1;
}

.team-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(var(--ink), 0.06);
}

.team-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--page-text);
    background: var(--page-bg);
    font-size: 0.95rem;
    transition: 0.25s;
}

.team-links a:hover {
    background: #0a66c2;
    color: #fff;
}

.team-link-spacer {
    width: 36px;
    height: 36px;
}

.team-read-more {
    background: none;
    border: none;
    color: var(--orange-deep);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    cursor: pointer;
    transition: 0.25s;
}

.team-read-more i {
    font-size: 0.75rem;
    transition: transform 0.25s;
}

.team-read-more:hover {
    color: var(--orange);
}

.team-read-more:hover i {
    transform: translateX(3px);
}

.team-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
}

.team-prev,
.team-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(var(--ink), 0.08);
    background: var(--surface);
    color: var(--page-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.25s;
    box-shadow: 0 8px 20px rgba(var(--ink), 0.06);
}

.team-navigation button:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
}

.team-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999;
}

.team-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 24px;
}

.team-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 23, 47, 0.62);
    backdrop-filter: blur(4px);
}

.team-modal-box {
    position: relative;
    background: var(--surface);
    border-radius: 24px;
    width: min(920px, 94vw);
    max-height: 90vh;
    overflow: auto;
    padding: 2.5rem;
    z-index: 2;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
}

.team-modal-grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 2rem;
    align-items: start;
}

.team-modal-grid img {
    width: 100%;
    border-radius: 18px;
    aspect-ratio: 1;
    object-fit: cover;
    object-position: center top;
    background: var(--page-bg);
}

.team-modal-grid h2 {
    font-family: var(--font-display);
    color: var(--page-text);
    margin: 0 0 0.35rem;
    font-size: 1.75rem;
}

.team-modal-grid h5 {
    color: var(--orange-deep);
    font-weight: 600;
    margin: 0 0 1.25rem;
    font-size: 1rem;
}

.team-modal-grid #modalBio {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.98rem;
}

.team-close {
    position: absolute;
    right: 18px;
    top: 14px;
    background: var(--page-bg);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    color: var(--page-text);
    transition: 0.2s;
}

.team-close:hover {
    background: var(--orange);
    color: #fff;
}

body.modal-open {
    overflow: hidden;
}

.team-pane {
    display: none;
}

.team-pane.active {
    display: block;
}

@media (max-width: 991px) {
    .team-modal-grid {
        grid-template-columns: 1fr;
    }

    .team-modal-grid img {
        max-width: 220px;
    }
}

@media (max-width: 768px) {
    .team-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-tabs {
        width: 100%;
        border-radius: 18px;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .team-tabs::-webkit-scrollbar {
        display: none;
    }

    .team-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .team-navigation {
        align-self: flex-end;
    }
}

/* ========================================
   OUR VALUES
======================================== */

.values-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.value-card {
    position: relative;
    background: var(--surface);
    border: 1px solid rgba(var(--ink), 0.08);
    border-radius: 24px;
    padding: 2rem 1.75rem 1.75rem;
    box-shadow: 0 12px 32px rgba(var(--ink), 0.04);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.value-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--orange), #ffb347);
    opacity: 0;
    transition: 0.25s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(var(--ink), 0.1);
    border-color: rgba(242, 108, 33, 0.2);
}

.value-card:hover::before {
    opacity: 1;
}

.value-card-num {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 1rem;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.65rem;
    color: var(--page-text);
    margin: 0 0 0.75rem;
}

.value-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.75;
    font-size: 0.98rem;
}

@media (max-width: 768px) {
    .values-cards {
        grid-template-columns: 1fr;
    }
}

/* legacy values timeline kept for safety */
.values-grid {
    display: grid;
    grid-template-columns: 1fr minmax(280px, 420px);
    gap: 3.5rem;
    align-items: stretch;
    margin-top: 2rem;
}

.values-timeline {
    position: relative;
    padding-left: 1rem;
}

.values-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 16px;
    bottom: 16px;
    width: 2px;
    background: rgba(var(--ink), .15);
}

.value-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 2rem;
    position: relative;
}

.value-item:not(:last-child) {
    margin-bottom: 1.8rem;
}

.value-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--paper);
    color: var(--orange);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.value-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--page-text);
}

.value-content p {
    color: var(--text-light);
    line-height: 1.8;
    max-width: 42rem;
}

.values-image {
    border-radius: 28px;
    overflow: hidden;
    min-height: 100%;
    box-shadow: 0 24px 50px rgba(var(--ink), 0.12);
}

.values-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
    min-height: 520px;
}

.value-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 2rem;
    position: relative;
    padding: 1rem 1.25rem;
    border-radius: 18px;
    transition: all 0.35s ease;
}

.value-item:not(:last-child) {
    margin-bottom: 2rem;
}

/* Hover Card */
.value-item:hover {
    background: var(--surface);
    transform: translateX(8px);
    box-shadow: 0 18px 40px rgba(var(--ink), 0.08);
}

/* Timeline Number */
.value-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--paper);
    color: var(--orange);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.35s ease;
}

.value-item:hover .value-number {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: scale(1.08);
}

/* Heading */
.value-content h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    color: var(--page-text);
    transition: color 0.3s;
}

.value-item:hover .value-content h3 {
    color: var(--orange);
}

/* Left Accent */
.value-item::before {
    content: "";
    position: absolute;
    left: 72px;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 20px;
    background: transparent;
    transition: 0.35s;
}

.value-item:hover::before {
    background: var(--orange);
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .values-image {
        order: -1;
    }
}
/*==========================
UGRO IMPACT
==========================*/

.impact-intro {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0 4rem;
}

.impact-logo-card {
    background: var(--surface);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
}

.impact-logo-card img {
    max-width: 180px;
    width: 100%;
}

.impact-content p {
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.impactSwiper {
    overflow: hidden;
}

.impact-card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    transition: 0.35s;
    height: 100%;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.impact-card img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

.impact-card h3 {
    color: var(--orange);
    font-size: 2rem;
    margin: 1.5rem 1.5rem 0.5rem;
}

.impact-card p {
    margin: 0 1.5rem 1.75rem;
    color: rgba(var(--ink), .75);
    line-height: 1.7;
}

.impact-navigation {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 2rem;
}

.impact-prev,
.impact-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: var(--surface);
    color: var(--page-text);
    cursor: pointer;
    transition: 0.3s;
}

.impact-prev:hover,
.impact-next:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
}

.impact-prev.swiper-button-disabled,
.impact-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

@media (max-width: 991px) {
    .impact-intro {
        grid-template-columns: 1fr;
        text-align: center;
    }
}
/*====================================================
    CULTURE
====================================================*/

.culture-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: 220px 220px;
    gap: 20px;
    margin: 3rem 0;
}

.culture-item {
    overflow: hidden;
    border-radius: 22px;
    transition: 0.35s;
    box-shadow: 0 10px 25px rgba(var(--ink), 0.08);
}

.culture-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.4s;
}

.culture-item:hover {
    transform: translateY(-6px);
}

.culture-item:hover img {
    transform: scale(1.05);
}

/* Layout */

.culture-item:nth-child(1) {
    grid-column: 1 / span 6;
    grid-row: 1;
}

.culture-item:nth-child(2) {
    grid-column: 7 / span 3;
    grid-row: 1;
}

.culture-item:nth-child(3) {
    grid-column: 10 / span 3;
    grid-row: 1;
}

.culture-item:nth-child(4) {
    grid-column: 1 / span 3;
    grid-row: 2;
}

.culture-item:nth-child(5) {
    grid-column: 4 / span 3;
    grid-row: 2;
}

.culture-item:nth-child(6) {
    grid-column: 7 / span 6;
    grid-row: 2;
}

/* Swiper */

.cultureSwiper {
    margin-top: 3rem;
    overflow: hidden;
}

.culture-card {
    background: var(--surface);
    border-radius: 22px;
    padding: 2rem;
    border: 1px solid rgba(var(--ink), 0.08);
    height: 390px;
}

.culture-card h3 {
    color: var(--orange);
    margin-bottom: 1rem;
}

.culture-card p {
    line-height: 1.8;
}

@media (max-width: 991px) {
    .culture-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .culture-item {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 220px;
    }
}

@media (max-width: 576px) {
    .culture-gallery {
        grid-template-columns: 1fr;
    }
}

/* CAREER */

.career-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: center;
    margin-top: 4rem;
}

.career-images {
    position: relative;
}

.career-main {
    width: 70%;
    border-radius: 24px;
}

.career-float {
    position: absolute;
    width: 45%;
    right: 0;
    bottom: 40px;
    border-radius: 20px;
    border: 8px solid #fff;
    box-shadow: 0 20px 50px rgba(var(--ink), 0.08);
}

.career-content p {
    line-height: 1.9;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .career-wrapper {
        grid-template-columns: 1fr;
    }

    .career-main {
        width: 100%;
    }

    .career-float {
        position: relative;
        right: auto;
        bottom: auto;
        margin-top: -60px;
        margin-left: auto;
        display: block;
        width: 60%;
    }
}

/* TESTIMONIALS */
.testimonialSwiper {
    overflow: hidden;
    padding: 20px 0;
}

.testimonial-card {
    background: var(--surface);
    border-radius: 22px;
    padding: 25px;
    min-height: 260px;
    border: 1px solid rgba(var(--ink), 0.08);
    position: relative;
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--ink), 0.08);
}

.testimonial-profile {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testimonial-profile img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-profile h4 {
    margin: 0;
    font-size: 16px;
}

.testimonial-profile span {
    background: #e85d1a;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-muted);
}

.quote-icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 35px !important;
    height: auto !important;
}

@media (max-width: 768px) {
    .testimonial-card {
        min-height: 240px;
    }
}

/*=============================
    Awards
==============================*/

.awardSwiper {
    margin-top: 3rem;
}

.award-card {
    background: var(--surface);
    border-radius: 22px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(var(--ink), 0.08);
    transition: 0.35s;
    box-shadow: 0 10px 35px rgba(var(--ink), 0.06);
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(var(--ink), 0.12);
}

.award-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.award-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.45s;
}

.award-card:hover img {
    transform: scale(1.06);
}

.award-content {
    padding: 1.5rem;
    text-align: center;
}

.award-content h3 {
    font-size: 1.35rem;
    color: var(--page-text);
    margin-bottom: 0.75rem;
}

.award-content p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Navigation */

.award-prev,
.award-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(var(--ink), 0.08);
    background: var(--surface);
    transition: 0.3s;
}

.award-prev:hover,
.award-next:hover {
    background: var(--orange);
    color: #fff;
}
