﻿/* ============================================================
   ABOUT PAGES — History · Awards · Board of Directors
   Design tokens: --bank-maroon:#5a101d  --gold:#c9a84c
============================================================ */

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.from-left  { transform: translateX(-32px); }
.reveal.from-right { transform: translateX( 32px); }
.reveal.active     { opacity: 1; transform: none; }

.delay-100 { transition-delay: 0.10s !important; }
.delay-200 { transition-delay: 0.20s !important; }
.delay-300 { transition-delay: 0.30s !important; }
.delay-400 { transition-delay: 0.40s !important; }
.delay-500 { transition-delay: 0.50s !important; }

/* ============================================================
   HERO BANNER
============================================================ */
.about-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

/* light pinkish-maroon wash fades left→right, image bleeds through on right */
.about-hero::before {
    display: none;
}

/* gold bottom border */
.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 4px;
    background: linear-gradient(90deg, var(--gold, #c9a84c) 0%, rgba(201,168,76,0.15) 100%);
}

.about-hero-inner {
    position: relative;
    z-index: 2;
    padding: 48px 0;
    width: 100%;
}

.about-hero h1 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.3px;
}

/* ============================================================
   ABOUT SUB-NAV
============================================================ */
.about-sub-nav {
    background: var(--page-bg);
    border-bottom: 2px solid #f0ebe8;
    position: sticky;
    top: 68px;          /* sits just below the site main nav */
    z-index: 90;
    box-shadow: 0 3px 18px rgba(90,16,29,0.07);
}
.about-sub-nav-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.about-sub-nav-inner::-webkit-scrollbar { display: none; }

.about-sub-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 26px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.79rem;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.22s, border-color 0.22s, background 0.22s;
    position: relative;
}
.about-sub-nav-link i { font-size: 0.95rem; opacity: 0.7; }
.about-sub-nav-link:hover {
    color: var(--bank-maroon, #5a101d);
    background: rgba(90,16,29,0.03);
}
.about-sub-nav-link.active {
    color: var(--bank-maroon, #5a101d);
    border-bottom-color: var(--gold, #c9a84c);
    background: rgba(201,168,76,0.04);
}
.about-sub-nav-link.active i { opacity: 1; }

/* ============================================================
   PAGE BODY WRAPPER
============================================================ */
.about-body {
    background: var(--page-bg);
    min-height: 60vh;
}

/* ============================================================
   CONTENT SECTION
============================================================ */
.about-content-section {
    padding: 80px 0;
}

/* ============================================================
   SECTION EYEBROW
============================================================ */
.section-tag {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c9621a;
    text-transform: uppercase;
    letter-spacing: 2.8px;
    display: block;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}
.about-section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    font-weight: 500;
    color: var(--bank-maroon, #5a101d);
    margin-bottom: 0;
    line-height: 1.2;
}
.section-divider-line {
    width: 52px; height: 4px;
    background: linear-gradient(90deg, var(--gold, #c9a84c), rgba(201,168,76,0.2));
    border-radius: 4px;
    margin: 14px 0 0;
}
.section-divider-line.center { margin: 14px auto 0; }

/* ============================================================
   HISTORY — INTRO CARD
============================================================ */
.history-intro-card {
    background: var(--page-bg);
    border-radius: 18px;
    border: 1px solid #ede8e3;
    box-shadow: 0 4px 24px rgba(90,16,29,0.06);
    overflow: hidden;
}
.history-intro-img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
    display: block;
}
.history-intro-body {
    padding: 40px 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.history-intro-body p {
    font-size: 0.97rem;
    line-height: 1.85;
    color: #000;
    margin-bottom: 1.1rem;
}
.history-intro-body p:last-child { margin-bottom: 0; }
.history-intro-body strong { color: var(--bank-maroon, #5a101d); }

/* founded badge */
.founded-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--bank-maroon, #5a101d) 0%, #8b1a2e 100%);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    width: fit-content;
}
.founded-badge i { color: var(--gold-light, #e8c96a); }

/* ============================================================
   TIMELINE
============================================================ */
.about-timeline-wrap {
    background: var(--page-bg);
    border-radius: 18px;
    border: 1px solid #ede8e3;
    padding: 40px 44px;
    box-shadow: 0 4px 24px rgba(90,16,29,0.05);
}
.about-timeline-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--bank-maroon, #5a101d);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.about-timeline-heading::after {
    content: '';
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--gold, #c9a84c), transparent);
    border-radius: 2px;
}

/* ── Keyframes ── */
@keyframes tl-line-draw {
    from { transform: scaleY(0); }
    to   { transform: scaleY(1); }
}
@keyframes dot-pop {
    0%   { transform: scale(0); opacity: 0; }
    60%  { transform: scale(1.35); }
    80%  { transform: scale(0.9); }
    100% { transform: scale(1); opacity: 1; }
}
@keyframes dot-ring {
    0%   { box-shadow: 0 0 0 3px var(--gold, #c9a84c); }
    50%  { box-shadow: 0 0 0 8px rgba(201,168,76,0.15); }
    100% { box-shadow: 0 0 0 3px var(--gold, #c9a84c); }
}
@keyframes tl-slide-in {
    from { opacity: 0; transform: translateX(-28px); }
    to   { opacity: 1; transform: translateX(0); }
}

.timeline { position: relative; padding-left: 44px; }

/* Line starts hidden, draws when .tl-active is added */
.timeline::before {
    content: '';
    position: absolute;
    left: 16px; top: 0; bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--gold, #c9a84c) 0%, var(--bank-maroon, #5a101d) 100%);
    border-radius: 3px;
    transform: scaleY(0);
    transform-origin: top center;
    transition: none;
}
.timeline.tl-active::before {
    animation: tl-line-draw 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

/* Timeline items hidden by default, revealed via JS */
.timeline-item { position: relative; margin-bottom: 28px; }
.timeline-item:last-child { margin-bottom: 0; }

.tl-item { opacity: 0; transform: translateX(-28px); }
.tl-item.tl-in {
    animation: tl-slide-in 0.5s cubic-bezier(0.34, 1.4, 0.64, 1) forwards;
}

/* Dot */
.timeline-dot {
    position: absolute;
    left: -35px; top: 6px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--gold, #c9a84c);
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--gold, #c9a84c);
    opacity: 0;
    transform: scale(0);
}
.tl-item.tl-in .timeline-dot {
    animation: dot-pop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s forwards,
               dot-ring 2.5s ease-in-out 0.6s infinite;
}

/* Card */
.timeline-card {
    background: var(--page-bg);
    border: 1px solid #ede8e3;
    border-left: 3px solid var(--gold, #c9a84c);
    border-radius: 0 10px 10px 0;
    padding: 16px 22px;
    transition: transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
                box-shadow 0.28s ease,
                border-left-color 0.25s,
                background 0.25s;
}
.timeline-card:hover {
    transform: translateX(6px);
    background: var(--page-bg);
    box-shadow: 0 8px 28px rgba(90,16,29,0.12);
    border-left-color: var(--bank-maroon, #5a101d);
    border-left-width: 5px;
}
.timeline-card h6 {
    color: var(--bank-maroon, #5a101d);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 5px;
    transition: color 0.2s;
}
.timeline-card:hover h6 { color: var(--bank-maroon, #5a101d); }
.timeline-card p { font-size: 0.85rem; color: #000; margin: 0; line-height: 1.6; }

/* ============================================================
   STAT CARDS
============================================================ */
@keyframes stat-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    40%       { transform: translateY(-8px) scale(1.03); }
    70%       { transform: translateY(-3px) scale(1.01); }
}

.about-stat-card {
    background: var(--page-bg);
    border: 1px solid #ede8e3;
    border-radius: 16px;
    padding: 24px 16px 20px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(90,16,29,0.05);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1),
                box-shadow 0.35s ease,
                border-color 0.25s;
}
/* Flood fill on hover */
.about-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--bank-maroon, #5a101d) 0%, #7c1524 100%);
    transform: scaleY(0);
    transform-origin: bottom center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 16px;
}
.about-stat-card:hover::before {
    transform: scaleY(1);
}
.about-stat-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 18px 40px rgba(90,16,29,0.22);
    border-color: var(--bank-maroon, #5a101d);
}

.about-stat-icon,
.about-stat-number,
.about-stat-label {
    position: relative;
    z-index: 1;
    transition: color 0.3s, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.about-stat-icon {
    font-size: 1.5rem;
    color: var(--gold, #c9a84c);
    margin-bottom: 8px;
    display: block;
}
.about-stat-card:hover .about-stat-icon {
    color: var(--gold-light, #e8c96a);
    transform: scale(1.25) rotate(-5deg);
}
.about-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--bank-maroon, #5a101d);
    line-height: 1;
}
.about-stat-card:hover .about-stat-number {
    color: #fff;
    transform: scale(1.08);
}
.about-stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}
.about-stat-card:hover .about-stat-label {
    color: rgba(255,255,255,0.75);
}

/* ============================================================
   AWARDS
============================================================ */
.award-card {
    background: var(--page-bg);
    border: 1px solid #ede8e3;
    border-radius: 16px;
    padding: 32px 22px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.32s ease;
    position: relative;
    overflow: hidden;
}
.award-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold, #c9a84c), var(--bank-maroon, #5a101d));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
    border-radius: 16px 16px 0 0;
}
.award-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(90,16,29,0.11);
    border-color: rgba(201,168,76,0.4);
}
.award-card:hover::before { transform: scaleX(1); }
.award-card .award-icon {
    font-size: 2.4rem;
    margin-bottom: 14px;
    display: block;
}
.award-card .award-year {
    display: inline-block;
    background: var(--bank-maroon, #5a101d);
    color: #fff;
    padding: 3px 13px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}
.award-card h5 {
    color: var(--bank-maroon, #5a101d);
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    margin-bottom: 8px;
    line-height: 1.35;
}
.award-card p { font-size: 0.82rem; color: #000; line-height: 1.6; margin: 0; }

/* ============================================================
   DIRECTOR CARDS
============================================================ */
.director-card {
    background: var(--page-bg);
    border: none;
    border-radius: 16px;
    padding: 0;
    text-align: left;
    height: 100%;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    max-width: 210px;
    margin-left: auto;
    margin-right: auto;
}
.director-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 44px rgba(0,0,0,0.15);
}
/* gold accent line on hover — disabled per design feedback */
.director-card::after {
    display: none;
}
.director-card:hover::after { transform: scaleX(1); }
.director-card:hover .view-profile-btn { transform: translateY(-2px); box-shadow: 0 8px 18px rgba(255,140,0,0.5); }

/* ── Photo area ── */
.director-img-wrap {
    width: 100%;
    aspect-ratio: 7 / 8;
    overflow: hidden;
    flex-shrink: 0;
    border-radius: 16px 16px 0 0;
    background: none;
    position: relative;
    line-height: 0;
}
.director-grid-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    border: none;
    border-radius: 0;
    margin: 0;
    transition: transform 0.42s ease;
}
.director-card:hover .director-grid-img { transform: scale(1.04); }

/* ── Info footer ── */
.director-card-info {
    padding: 11px 12px 13px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
}
.director-name {
    font-family: 'Poppins', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2px;
    line-height: 1.35;
}
.director-role {
    font-size: 0.70rem;
    color: #000;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
    font-weight: 400;
}
.view-profile-btn {
    opacity: 1;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    font-size: 0.67rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: 1px solid transparent;
    color: #fff;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    padding: 4px 12px;
    border-radius: 20px;
    cursor: pointer;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: 0 3px 10px rgba(255,140,0,0.3);
    margin-top: 4px;
}
.view-profile-btn:hover {
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
    color: #fff;
    box-shadow: 0 8px 18px rgba(255,140,0,0.5);
}

/* ============================================================
   PROFILE MODAL
============================================================ */
.profile-modal-overlay {
    position: fixed; inset: 0;
    background: rgba(20,5,8,0.35);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.32s ease;
}
.profile-modal-overlay.open { opacity: 1; pointer-events: auto; }
.profile-modal {
    background: var(--page-bg);
    border-radius: 22px;
    max-width: 580px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 40px 90px rgba(0,0,0,0.35);
    transform: scale(0.88) translateY(36px);
    transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.profile-modal-overlay.open .profile-modal { transform: scale(1) translateY(0); }
.profile-modal-banner {
    background: linear-gradient(135deg, var(--bank-maroon, #5a101d) 0%, #7c1524 100%);
    border-radius: 22px 22px 0 0;
    padding: 38px 28px 52px;
    position: relative;
    overflow: hidden;
}
.profile-modal-banner::after {
    content: '';
    position: absolute;
    bottom: -1px; left: 0; right: 0;
    height: 36px;
    background: var(--page-bg);
    border-radius: 50% 50% 0 0 / 24px 24px 0 0;
}
.profile-modal-banner .pattern {
    position: absolute; inset: 0;
    opacity: 0.06;
    background-image: repeating-linear-gradient(45deg, white 0, white 1px, transparent 0, transparent 50%);
    background-size: 18px 18px;
}
/* gold accent line on banner */
.profile-modal-banner::before {
    content: '';
    position: absolute;
    bottom: 35px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold, #c9a84c) 0%, transparent 60%);
    opacity: 0.5;
}
.profile-modal-body { padding: 72px 28px 30px; position: relative; }
.profile-modal-avatar {
    position: absolute;
    top: -60px; left: 28px;
    width: 108px; height: 108px;
    border-radius: 14px;
    border: 4px solid white;
    object-fit: cover;
    object-position: top center;
    background: #f4f0ed;
    box-shadow: 0 8px 28px rgba(0,0,0,0.18);
    z-index: 10;
}
.profile-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255,255,255,0.18);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    width: 34px; height: 34px;
    border-radius: 50%;
    font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 10;
    line-height: 1;
}
.profile-modal-close:hover { background: rgba(255,255,255,0.32); }
.profile-detail-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #f2eeeb;
}
.profile-detail-row:last-child { border-bottom: none; }
.profile-detail-icon {
    width: 36px; height: 36px;
    border-radius: 10px;
    background: #fef3e8;
    color: #c9621a;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.profile-detail-label {
    font-size: 0.67rem;
    text-transform: uppercase;
    letter-spacing: 0.9px;
    color: #000;
    font-weight: 700;
    margin-bottom: 2px;
    font-family: 'Poppins', sans-serif;
}
.profile-detail-value {
    font-size: 0.88rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* ============================================================
   GST CERTIFICATE PAGE
============================================================ */
.gst-content-card {
    background: var(--page-bg);
    border: 1px solid #ede8e3;
    border-radius: 20px;
    box-shadow: 0 4px 28px rgba(90,16,29,0.07);
    overflow: hidden;
}
.gst-body {
    padding: 52px 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.gst-body p {
    font-size: 0.97rem;
    color: #000;
    line-height: 1.75;
    margin-bottom: 28px;
}
.gst-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 36px;
}
.gst-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 0;
    border-bottom: 1px solid #f4f0ed;
    font-size: 0.91rem;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}
.gst-checklist li:last-child { border-bottom: none; }
.gst-checklist li i {
    width: 24px; height: 24px;
    border-radius: 50%;
    background: #fef3e8;
    color: #c9621a;
    font-size: 0.85rem;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.gst-checklist li strong { color: var(--bank-maroon, #5a101d); }
.gst-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: linear-gradient(135deg, #ff8c00, #ff6b00);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.86rem;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 50px;
    text-decoration: none;
    letter-spacing: 0.4px;
    transition: all 0.28s ease;
    box-shadow: 0 6px 20px rgba(255,140,0,0.3);
    border: none;
    width: fit-content;
}
.gst-download-btn i { font-size: 1rem; color: #fff; }
.gst-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255,140,0,0.4);
    color: #fff;
    background: linear-gradient(135deg, #ff6b00, #ff8c00);
}
.gst-img-wrap {
    position: relative;
    height: 100%;
    min-height: 380px;
    overflow: hidden;
}
.gst-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* decorative gold overlay strip on image */
.gst-img-wrap::after {
    content: '';
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gold, #c9a84c), var(--bank-maroon, #5a101d));
}
/* compliance badge floating on image */
.gst-compliance-badge {
    position: absolute;
    bottom: 28px; right: 24px;
    background: rgba(90,16,29,0.92);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(201,168,76,0.35);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    border-radius: 12px;
    padding: 14px 18px;
    text-align: center;
    min-width: 120px;
}
.gst-compliance-badge .badge-icon {
    font-size: 1.6rem;
    color: var(--gold-light, #e8c96a);
    display: block;
    margin-bottom: 4px;
}
.gst-compliance-badge .badge-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: rgba(255,255,255,0.65);
    display: block;
}
.gst-compliance-badge .badge-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-top: 2px;
}

/* info row below main card */
.gst-info-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 28px;
}
.gst-info-tile {
    background: var(--page-bg);
    border: 1px solid #ede8e3;
    border-radius: 14px;
    padding: 22px 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: box-shadow 0.25s, transform 0.25s;
}
.gst-info-tile:hover {
    box-shadow: 0 8px 24px rgba(90,16,29,0.08);
    transform: translateY(-3px);
}
.gst-info-tile-icon {
    width: 42px; height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, var(--bank-maroon,#5a101d) 0%, #7c1524 100%);
    color: var(--gold-light, #e8c96a);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.gst-info-tile-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
}
.gst-info-tile-value {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--bank-maroon, #5a101d);
    font-family: 'Poppins', sans-serif;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 991px) {
    .gst-body { padding: 36px 32px; }
    .gst-img-wrap { min-height: 280px; }
    .gst-info-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .gst-body { padding: 28px 22px; }
    .gst-img-wrap { min-height: 220px; }
    .gst-info-row { grid-template-columns: 1fr; }
}

/* ============================================================
   HISTORY CMS
============================================================ */
.history-cms-content { font-size: 0.95rem; color: #000; line-height: 1.85; }
.history-cms-content p { margin-bottom: 1rem; }
.history-cms-content h2,
.history-cms-content h3,
.history-cms-content h4 {
    color: var(--bank-maroon, #5a101d);
    font-family: 'Poppins', sans-serif;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
    .about-hero { min-height: 280px; }
    .history-intro-body { padding: 32px 28px; }
    .about-timeline-wrap { padding: 28px 24px; }
}
@media (max-width: 767px) {
    .about-hero { min-height: 220px; }
    .about-hero h1 { font-size: 1.7rem; }
    .about-hero-inner { padding: 36px 0; }
    .about-content-section { padding: 52px 0; }
    .history-intro-img { min-height: 220px; }
    .history-intro-body { padding: 24px 20px; }
    .about-timeline-wrap { padding: 24px 20px; }
}

