/* ============================================================
   ABOUT PAGE - PREMIUM DESIGN
   ============================================================ */

/* ============================================
   WHO WE ARE / WHAT WE DO - ENHANCED SECTIONS
   ============================================ */

.who-we-are-section,
.what-we-do-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
}

.what-we-do-section {
    background-color: #f8fafb;
}



/* Decorative background pattern */
.who-we-are-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0, 51, 153, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.who-we-are-section::after {
    content: '';
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(252, 202, 0, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.who-text p {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.9;
    margin-bottom: 1.2rem;
    text-align: justify;
}

/* --- Stat badges row under Who We Are --- */
.who-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
    padding: 24px 28px;
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.04), rgba(252, 202, 0, 0.04));
    border: 1px solid rgba(0, 51, 153, 0.08);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.who-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--eu-blue), var(--eu-yellow), var(--eu-blue));
    background-size: 200% 100%;
    animation: shimmerGrad 4s ease infinite;
}

@keyframes shimmerGrad {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.who-stat-item {
    flex: 1;
    text-align: center;
}

.who-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--eu-blue);
    line-height: 1.1;
    margin-bottom: 4px;
}

.who-stat-label {
    display: block;
    color: var(--text-dark);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.who-stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 51, 153, 0.2), transparent);
    flex-shrink: 0;
}

/* --- Image wrap enhancements --- */
.who-image-wrap {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 50px rgba(0, 51, 153, 0.12);
}

.who-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    transition: transform 0.6s ease;
}

.who-image-wrap:hover img {
    transform: scale(1.02);
}

/* --- What We Do image swiper --- */
.who-image-wrap .swiper {
    border-radius: 16px;
    overflow: hidden;
}

.who-image-wrap .swiper-slide {
    position: relative;
}

.what-we-do-pagination {
    position: static;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    width: 100%;
}

.what-we-do-pagination .swiper-pagination-bullet {

    opacity: 0.35;
    margin: 0;
    background: var(--bs-gray-dark);
}

.what-we-do-pagination .swiper-pagination-bullet-active {
    background: var(--eu-yellow);
    opacity: 1;
}

.who-image-wrap .what-we-do-swiper .who-image-badge.badge-left {
    left: 20px;
    bottom: 20px;
}

.who-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    border: 4px solid var(--eu-yellow);
    border-radius: 16px;
    z-index: -1;
    transition: transform 0.4s ease;
}

.who-image-wrap:hover .who-image-accent {
    transform: translate(-6px, -6px);
}

.who-image-wrap.reverse .who-image-accent {
    right: auto;
    left: -20px;
}

.who-image-wrap.reverse:hover .who-image-accent {
    transform: translate(6px, -6px);
}

/* Floating image badge */
.who-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 51, 153, 0.1);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    z-index: 2;
    animation: floatBadge 3s ease-in-out infinite;
}

.who-image-badge.badge-left {
    right: auto;
    left: 20px;
}

@keyframes floatBadge {

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

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

.who-image-badge i {
    font-size: 1.4rem;
    color: var(--eu-yellow);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.08), rgba(252, 202, 0, 0.1));
    border-radius: 10px;
    flex-shrink: 0;
}

.who-image-badge strong {
    display: block;
    font-size: 0.9rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.who-image-badge span {
    display: block;
    font-size: 0.76rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* --- What We Do feature items --- */
.wwd-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.wwd-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: var(--white);
    border: 1px solid rgba(0, 51, 153, 0.08);
    border-radius: 14px;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.wwd-feature-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--eu-blue), var(--eu-yellow));
    border-radius: 0 4px 4px 0;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.wwd-feature-item:hover {
    box-shadow: 0 8px 28px rgba(0, 51, 153, 0.1);
    transform: translateX(4px);
    border-color: rgba(0, 51, 153, 0.15);
}

.wwd-feature-item:hover::before {
    opacity: 1;
}

.wwd-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--eu-blue), #0a1f63);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(0, 51, 153, 0.25);
}

.wwd-feature-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 2px;
}

.wwd-feature-item>div:last-child span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-dark);
    opacity: 0.75;
}

/* ============================================
   MISSION & VISION - PREMIUM DARK SECTION
   ============================================ */
.mv-premium-section {
    padding: 100px 0;
    background: linear-gradient(165deg, #0b1a3e 0%, #0f2352 40%, #142d6a 100%);
    position: relative;
    overflow: hidden;
}

.mv-premium-bg-decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mv-premium-bg-decor::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(252, 202, 0, 0.06) 0%, transparent 60%);
    border-radius: 50%;
}

.mv-premium-bg-decor::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 51, 153, 0.12) 0%, transparent 60%);
    border-radius: 50%;
}

/* Glassmorphism card with animated gradient border */
.mv-premium-card {
    position: relative;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 44px 38px;
    height: 100%;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
    overflow: hidden;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.mv-premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--eu-blue), var(--eu-yellow), var(--eu-blue));
    background-size: 200% 100%;
    animation: shimmerGrad 3s ease infinite;
    border-radius: 20px 20px 0 0;
}

.mv-premium-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
    border-color: rgba(252, 202, 0, 0.2);
}

/* Ambient glow behind card */
.mv-premium-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    z-index: -1;
    transition: opacity 0.4s;
}

.mv-glow-blue {
    top: -60px;
    right: -60px;
    background: var(--eu-blue);
}

.mv-glow-gold {
    top: -60px;
    right: -60px;
    background: var(--eu-yellow);
}

.mv-premium-card:hover .mv-premium-glow {
    opacity: 0.25;
}

.mv-premium-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.mv-premium-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.5), rgba(10, 31, 99, 0.6));
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--eu-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mv-premium-icon.icon-gold {
    background: linear-gradient(135deg, rgba(252, 202, 0, 0.2), rgba(200, 160, 0, 0.3));
}

.mv-premium-card:hover .mv-premium-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(252, 202, 0, 0.2);
}

.mv-premium-number {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.04);
    line-height: 1;
}

.mv-premium-title {
    color: var(--eu-yellow);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.15rem;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.mv-premium-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.85;
    font-size: 0.97rem;
    margin: 0 0 4px;
    flex: 1;
    text-align: justify;
}

.mv-premium-footer {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.mv-premium-footer i {
    color: var(--eu-yellow);
    font-size: 0.9rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.mv-premium-footer span {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.88rem;
    line-height: 1.6;
    font-style: italic;
}

/* ============================================
   DOWNLOADS - LIGHT CARDS
   ============================================ */
.downloads-section {
    padding: 100px 0 120px 0;
    background-color: #f8fafb;
}

.dl-light-card {
    background: #ffffff;
    border-radius: 0;
    padding: 50px 40px 40px;
    text-align: center;
    position: relative;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #eaeaea;
    transition: transform 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dl-light-card:hover {
    transform: translateY(-5px);
}

.dl-light-icon-wrap {
    position: absolute;
    top: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #c9a227;
    z-index: 2;
}

.dl-light-card:hover .dl-light-icon-wrap {
    color: var(--eu-blue);
}

.dl-light-icon-wrap::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid #fff;
    z-index: -1;
    clip-path: inset(0 0 50% 0);
}

.dl-light-icon-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 10px solid #fff;
    box-shadow: 0 0 0 2px #fff, inset 0 0 0 2px #fff;
    z-index: -2;
    clip-path: inset(0 0 50% 0);
}

.dl-light-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1e293b;
    margin-bottom: 8px;
    font-weight: 600;
}

.dl-light-subtitle {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.dl-light-text {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 30px;
    flex-grow: 1;
}

.dl-light-btn {
    background-color: var(--eu-blue);
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: background 0.3s;
    display: inline-block;
    width: max-content;
    margin: 0 auto;
}

.dl-light-btn:hover {
    /*background-color: #b89a2b;*/
    background: var(--eu-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991px) {

    .who-we-are-section,
    .what-we-do-section,
    .mv-premium-section,
    .downloads-section {
        padding: 60px 0;
    }

    .who-image-wrap {
        margin-top: 20px;
    }

    .who-stats {
        flex-wrap: wrap;
        gap: 12px;
    }

    .who-stat-divider {
        display: none;
    }

    .who-stat-item {
        flex: 0 0 calc(33.33% - 8px);
    }

    .mv-premium-card {
        margin-bottom: 20px;
    }

    .dl-light-card {
        margin-bottom: 20px;
        margin-top: 60px;
    }
}

@media (max-width: 575px) {

    .who-we-are-section,
    .what-we-do-section,
    .mv-premium-section,
    .downloads-section {
        padding: 50px 0;
    }

    .who-stats {
        padding: 18px 16px;
    }

    .who-stat-number {
        font-size: 1.4rem;
    }

    .mv-premium-card {
        padding: 30px 24px;
    }

    .wwd-feature-item {
        padding: 14px 16px;
    }

    .dl-light-card {
        padding: 40px 20px 30px;
    }

    .who-image-badge {
        padding: 10px 14px;
    }

    .who-image-badge i {
        width: 34px;
        height: 34px;
        font-size: 1.1rem;
    }
}

/* ============================================================
   PRESIDENT'S MESSAGE - THEME COLOR DESIGN
   ============================================================ */

.pm-theme-section {
    padding: 80px 0 100px;
    position: relative;
    overflow: visible;
    /*overflow: hidden;*/
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Portrait styling with theme accent */
.pm-theme-portrait-wrap {
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 20px;
}

.pm-theme-portrait-bg {
    position: absolute;
    top: 0;
    left: 42%;
    transform: translateX(-50%);
    width: 85%;
    height: 85%;
    background: linear-gradient(180deg, var(--eu-blue) 0%, #0a1f63 100%);
    border-radius: 20px;
    z-index: 0;
}

.pm-theme-portrait-frame {
    position: relative;
    width: 100%;
    max-width: 360px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 51, 153, 0.2);
    z-index: 1;
    margin-bottom: 30px;
}

.pm-theme-portrait-frame img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}

.pm-theme-portrait-frame:hover img {
    transform: scale(1.03);
}

.pm-theme-portrait-badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 51, 153, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 2;
    white-space: nowrap;
}

.pm-theme-portrait-badge i {
    font-size: 1.2rem;
    color: var(--eu-yellow);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 51, 153, 0.08), rgba(252, 202, 0, 0.1));
    border-radius: 8px;
    flex-shrink: 0;
}

.pm-theme-portrait-badge strong {
    display: block;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 700;
}

.pm-theme-portrait-badge span {
    display: block;
    font-size: 0.72rem;
    color: var(--text-dark);
    font-weight: 400;
}

/* Content area */
.pm-theme-content-wrap {
    padding-left: 20px;
}

.contentfixed {
    position: sticky;
    top: 110px;
    align-self: flex-start;
    z-index: 2;
}

.pm-theme-content-wrap .section-label {
    margin-bottom: 8px;
}

.pm-theme-content-wrap .section-title {
    margin-bottom: 12px;
}

.pm-theme-content-wrap .title-underline {
    margin-bottom: 32px;
}

/* Message body */
.pm-theme-message {
    margin-bottom: 36px;
}

.pm-theme-message p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-dark);
    margin-bottom: 18px;
    text-align: justify;
}

.pm-theme-message p strong {
    color: var(--eu-blue);
    font-weight: 600;
}

.pm-theme-greeting {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px !important;
}

/* Signature block */
.pm-theme-signature {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 51, 153, 0.1);
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.pm-theme-salutation {
    font-style: italic;
    font-size: 0.95rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.pm-theme-signoff {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 4px;
}

.pm-theme-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.pm-theme-designation {
    font-size: 0.9rem;
    color: var(--eu-blue);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1366px) and (min-width: 1200px) {
    .pm-theme-portrait-bg {
        left: 37%;
    }

}

@media (max-width: 1365px) and (min-width: 1024px) {
    .pm-theme-portrait-bg {
        left: 37%;
    }

}

@media (max-width: 991px) {
    .pm-theme-section {
        padding: 60px 0 80px;
    }

    .pm-theme-portrait-wrap {
        padding-top: 15px;
        margin-bottom: 20px;
    }

    .pm-theme-portrait-frame {
        max-width: 300px;
    }

    .pm-theme-content-wrap {
        padding-left: 0;
        text-align: center;
    }

    .pm-theme-content-wrap .title-underline {
        margin-left: auto;
        margin-right: auto;
    }

    .pm-theme-message p {
        text-align: left;
    }

    .pm-theme-signature {
        align-items: center;
        text-align: center;
    }

    /* Columns stack here (col-lg-5), so pinning the portrait would
       trap it awkwardly above the message text — release it. */
    .contentfixed {
        position: static;
        top: auto;
    }
}

@media (max-width: 575px) {
    .pm-theme-section {
        padding: 40px 0 60px;
    }

    .pm-theme-portrait-frame {
        max-width: 260px;
    }

    .pm-theme-portrait-badge {
        padding: 10px 14px;
    }

    .pm-theme-portrait-badge i {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .pm-theme-portrait-bg {
        width: 70%;
        height: 97%;
    }

    .pm-theme-message p {
        font-size: 0.95rem;
        line-height: 1.75;
    }

    .pm-theme-greeting {
        font-size: 1.15rem;
    }

    .pm-theme-name {
        font-size: 1.1rem;
    }

    .pm-theme-designation {
        font-size: 0.85rem;
    }
}

/* ============================================================
   GOVERNING BOARD - DARK THEME CARD DESIGN
   ============================================================ */

.gb-dark-section {
    padding: 80px 0 100px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.gb-dark-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(0, 51, 153, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(252, 202, 0, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Section Header */
.gb-dark-header {
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.gb-dark-header .section-label {
    margin-bottom: 8px;
    color: var(--eu-blue);
}

.gb-dark-header .section-title {
    margin-bottom: 12px;
    color: #111111;
}

.gb-dark-header .title-underline {
    margin-bottom: 20px;
    background: var(--eu-yellow);
}

.gb-dark-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: rgba(0, 0, 0, 0.65);
    line-height: 1.8;
}

/* Board Grid */
.gb-dark-grid {
    position: relative;
    z-index: 1;
}

/* Individual Card */
.gb-dark-card {
    background: linear-gradient(180deg, #132240 0%, #0e1a33 100%);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.06);
    height: 100%;
}

.gb-dark-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 51, 153, 0.15);
    border-color: rgba(252, 202, 0, 0.15);
}

/* Card Inner - Photo + Vertical Text */
.gb-dark-card-inner {
    display: flex;
    position: relative;
    /*min-height: 320px;*/
    height: 70%;
}

/* Vertical Text */
.gb-dark-vertical-text {
    width: 48px;
    background: linear-gradient(180deg, rgba(0, 51, 153, 0.3) 0%, rgba(0, 51, 153, 0.15) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.gb-dark-vertical-text span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 3px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Photo Wrap */
.gb-dark-photo-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2d4d 0%, #0f1f3a 100%);
}

.gb-dark-photo {
    width: 100%;
    height: 100%;
    position: relative;
}

.gb-dark-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.5s ease;
}

.gb-dark-card:hover .gb-dark-photo img {
    transform: scale(1.05);
}

/* Subtle overlay on photo */
.gb-dark-photo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(14, 26, 51, 0.6) 0%, transparent 100%);
    pointer-events: none;
}

/* Info Box */
.gb-dark-info {
    padding: 20px 18px 80px 20px;
    background: linear-gradient(180deg, #0e1a33 0%, #0a1428 100%);
    border-top: none;
    position: relative;
    /* Diagonal cut: starts at 48px on top (sidebar width), goes to bottom-left corner */
    /*clip-path: polygon(48px 0%, 100% 0%, 100% 100%, 0% 100%, 0% 30px);*/
    height: 100%;
}

.gb-dark-info::before {
    display: none;
}

/* Info Header */
.gb-dark-info-header {
    display: block;
    margin-bottom: 10px;
}

.gb-dark-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--eu-yellow);
    margin: 0;
    line-height: 1.3;
    width: 100%;
}

.gb-dark-role {
    display: none;
}

/* Info Body */
.gb-dark-info-body {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 10px;
}

.gb-dark-designation {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 3px;
    font-weight: 500;
    line-height: 1.4;
}

.gb-dark-company {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   RESPONSIVE - GOVERNING BOARD DARK
   ============================================ */

@media (max-width: 1199px) {
    .gb-dark-card-inner {
        min-height: 300px;
    }
}

@media (max-width: 991px) {
    .gb-dark-section {
        padding: 60px 0 80px;
    }

    .gb-dark-header {
        margin-bottom: 40px;
    }

    .gb-dark-card-inner {
        min-height: 280px;
    }

    .gb-dark-vertical-text {
        width: 42px;
    }

    .gb-dark-vertical-text span {
        font-size: 0.78rem;
        letter-spacing: 2px;
    }
}

@media (max-width: 767px) {
    .gb-dark-card-inner {
        min-height: 240px;
    }

    .gb-dark-info {
        padding: 14px 12px 16px;
    }

    .gb-dark-name {
        font-size: 0.92rem;
    }

    .gb-dark-role {
        font-size: 0.62rem;
        padding: 3px 8px;
    }

    .gb-dark-designation {
        font-size: 0.8rem;
    }

    .gb-dark-company {
        font-size: 0.72rem;
    }
}

@media (max-width: 575px) {
    .gb-dark-section {
        padding: 50px 0 60px;
    }

    .gb-dark-card-inner {
        min-height: 320px;
    }

    .gb-dark-vertical-text {
        width: 50px;
    }

    .gb-dark-vertical-text span {
        font-size: 0.85rem;
        letter-spacing: 3px;
    }

    .gb-dark-info {
        padding: 18px 16px 20px;
    }

    .gb-dark-name {
        font-size: 1.05rem;
    }

    .gb-dark-role {
        font-size: 0.7rem;
        padding: 4px 10px;
    }

    .gb-dark-designation {
        font-size: 0.9rem;
    }

    .gb-dark-company {
        font-size: 0.82rem;
    }

    .gb-dark-desc {
        font-size: 0.95rem;
    }
}

@media (max-width: 374px) {
    .gb-dark-card-inner {
        min-height: 280px;
    }

    .gb-dark-vertical-text {
        width: 42px;
    }
}