/* ============================================================
   WFFI SHARED STYLESHEET
   Extracted from index.html + sub-page additions
   ============================================================ */

/* ============ RESET & TOKENS ============ */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{overflow-x:clip;scroll-behavior:smooth}
body{overflow-x:clip;font-family:'Inter',system-ui,-apple-system,sans-serif;background:var(--canvas);color:var(--text-primary);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}
:root{
  --canvas:#0c1420;
  --panel:#131e2e;
  --panel-border:#1c2d42;
  --accent:#e8712a;
  --accent-hover:#f28a3d;
  --accent-muted:rgba(232,113,42,0.15);
  --india-green:#1a9e4f;
  --kit-blue:#1565c0;
  --kit-blue-deep:#0d3f7e;
  --text-secondary:#8fa3b8;
  --text-primary:#eef2f6;
  --ease-out:cubic-bezier(0.16,1,0.3,1);
  --ease-in-out:cubic-bezier(0.65,0,0.35,1);
  --tshadow:0 2px 4px rgba(5,5,10,.9),0 6px 20px rgba(5,5,10,.75);
  --font-display:'Anton',Impact,'Arial Black',sans-serif;
  --font-editorial:'Athelas','Palatino Linotype','Book Antiqua',Palatino,Georgia,serif;
  --font-body:'Inter',system-ui,-apple-system,sans-serif;
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button{font:inherit;cursor:pointer;border:none;background:none;color:inherit}

/* ============ SKIP LINK ============ */
.skip-link{position:absolute;top:-100%;left:16px;padding:8px 16px;background:var(--accent);color:#fff;border-radius:0 0 8px 8px;z-index:1000;font-size:14px;font-weight:600;transition:top .2s var(--ease-out)}
.skip-link:focus{top:0}

/* ============ NAV ============ */
.nav{position:fixed;top:0;left:0;right:0;z-index:100;padding:14px 32px;display:flex;align-items:center;justify-content:space-between;transition:background .35s var(--ease-out),box-shadow .35s var(--ease-out),border-color .35s var(--ease-out);background:rgba(10,14,23,0.85);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid rgba(255,255,255,0.07)}
.nav.scrolled{background:rgba(8,12,20,0.96);box-shadow:0 10px 30px rgba(0,0,0,0.5);border-bottom-color:rgba(255,255,255,0.12)}
.nav-logo{display:flex;align-items:center;gap:10px}
.nav-logo img{height:38px;width:auto}
.nav-logo span{font-family:var(--font-editorial);font-size:19px;font-weight:700;letter-spacing:0.02em;color:var(--text-primary)}
.nav-links{display:flex;align-items:center;gap:4px;list-style:none}
.nav-item{position:relative}
.nav-link{display:inline-flex;align-items:center;gap:6px;padding:8px 16px;font-size:14px;font-weight:500;letter-spacing:0.01em;color:var(--text-secondary);border-radius:10px;transition:all .2s var(--ease-out);border:1px solid transparent;cursor:pointer;text-decoration:none}
.nav-link .chevron{width:14px;height:14px;transition:transform .25s var(--ease-out);opacity:0.65}
.nav-item:hover .nav-link,.nav-link:hover{color:#fff;background:rgba(255,255,255,0.07);border-color:rgba(255,255,255,0.12)}
.nav-item:hover .nav-link .chevron{transform:rotate(180deg);opacity:1}

/* Mega Dropdown */
.mega-dropdown{position:absolute;top:calc(100% + 12px);left:50%;transform:translateX(-50%) translateY(8px);background:#0d131f;border:1px solid rgba(255,255,255,0.12);border-radius:16px;padding:20px;opacity:0;visibility:hidden;transition:opacity .25s var(--ease-out),transform .25s var(--ease-out),visibility .25s;box-shadow:0 24px 48px -12px rgba(0,0,0,0.85),0 0 0 1px rgba(255,255,255,0.05);z-index:200;display:grid;gap:6px}
.mega-dropdown::before{content:'';position:absolute;top:-12px;left:0;right:0;height:12px}
.mega-dropdown.cols-2{grid-template-columns:repeat(2,minmax(240px,1fr));width:520px}
.mega-dropdown.cols-3{grid-template-columns:repeat(3,minmax(220px,1fr));width:740px}
.nav-item:hover .mega-dropdown{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0)}
.dropdown-card{display:block;padding:12px 14px;border-radius:10px;text-decoration:none;transition:background .2s var(--ease-out),transform .2s var(--ease-out)}
.dropdown-card:hover{background:rgba(255,255,255,0.06);transform:translateY(-1px)}
.dropdown-card .item-title{font-family:var(--font-body);font-size:14px;font-weight:600;color:var(--text-primary);margin-bottom:4px}
.dropdown-card:hover .item-title{color:#fff}
.dropdown-card .item-desc{font-size:12px;line-height:1.45;color:var(--text-secondary);font-weight:400}

/* Nav Actions */
.nav-actions{display:flex;align-items:center;gap:12px}
.theme-toggle-btn{width:38px;height:38px;border-radius:10px;background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);display:flex;align-items:center;justify-content:center;color:var(--text-primary);transition:background .2s var(--ease-out),border-color .2s var(--ease-out);cursor:pointer}
.theme-toggle-btn:hover{background:rgba(255,255,255,0.12);border-color:rgba(255,255,255,0.2)}
.nav-cta-btn{display:inline-flex;align-items:center;justify-content:center;padding:9px 20px;border-radius:10px;background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.18);color:#fff;font-size:14px;font-weight:600;text-decoration:none;transition:all .25s var(--ease-out);white-space:nowrap}
.nav-cta-btn:hover{background:var(--accent);border-color:var(--accent);transform:translateY(-1px);box-shadow:0 4px 16px rgba(232,113,42,0.3)}

@media(max-width:992px){
  .nav-links{display:none}
  .nav{padding:12px 20px}
  .nav-logo img{height:34px}
}

/* ============ LIGHT THEME ============ */
html.light-theme {
  --canvas: #f8fafc;
  --panel: #ffffff;
  --panel-border: #e2e8f0;
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --accent: #e8712a;
  --accent-hover: #d95d16;
  --accent-muted: rgba(232, 113, 42, 0.12);
  --kit-blue: #1565c0;
  --india-green: #15803d;
  --tshadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
html.light-theme body {
  background: var(--canvas);
  color: var(--text-primary);
}
html.light-theme .nav {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}
html.light-theme .nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(0, 0, 0, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}
html.light-theme .nav-logo span {
  color: #0f172a;
}
html.light-theme .nav-link {
  color: #475569;
}
html.light-theme .nav-item:hover .nav-link,
html.light-theme .nav-link:hover,
html.light-theme .nav-link.active {
  color: #0f172a;
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.08);
}
html.light-theme .mega-dropdown {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 20px 48px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
}
html.light-theme .dropdown-card:hover {
  background: #f1f5f9;
}
html.light-theme .dropdown-card .item-title {
  color: #0f172a;
}
html.light-theme .dropdown-card:hover .item-title {
  color: var(--accent);
}
html.light-theme .dropdown-card .item-desc {
  color: #64748b;
}
html.light-theme .theme-toggle-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: #0f172a;
}
html.light-theme .theme-toggle-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}
html.light-theme .nav-cta-btn {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}
html.light-theme .nav-cta-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(232, 113, 42, 0.3);
}

/* Light Theme Cards & Sections */
html.light-theme .chairman-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-top-color: #e2e8f0;
  border-bottom-color: #e2e8f0;
}
html.light-theme .chairman-section::before {
  background: radial-gradient(circle at 10% 50%, rgba(232, 113, 42, 0.05), transparent 50%),
              radial-gradient(circle at 90% 50%, rgba(21, 101, 192, 0.05), transparent 50%);
}
html.light-theme .chairman-avatar-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
html.light-theme .chairman-name {
  color: #0f172a;
}
html.light-theme .chairman-quote-text {
  color: #1e293b;
}
html.light-theme .chairman-body-p {
  color: #475569;
}
html.light-theme .lead-box {
  background: linear-gradient(135deg, rgba(232, 113, 42, 0.07) 0%, rgba(21, 101, 192, 0.05) 100%);
  border-color: rgba(232, 113, 42, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}
html.light-theme .lead-box p {
  color: #0f172a;
}
html.light-theme .info-card,
html.light-theme .person-card,
html.light-theme .committee-card,
html.light-theme .pillar-card,
html.light-theme .mv-card,
html.light-theme .do-card,
html.light-theme .video-card,
html.light-theme .news-list-item,
html.light-theme .contact-card,
html.light-theme .bullet-card-item,
html.light-theme .stat-pill,
html.light-theme .download-row {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}
html.light-theme .info-card:hover,
html.light-theme .person-card:hover,
html.light-theme .committee-card:hover,
html.light-theme .mv-card:hover,
html.light-theme .do-card:hover,
html.light-theme .video-card:hover,
html.light-theme .bullet-card-item:hover {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
}
html.light-theme .bullet-card-item p {
  color: #1e293b;
}
html.light-theme .mv-card h3,
html.light-theme .do-card h3,
html.light-theme .info-card h3,
html.light-theme .person-card .person-name,
html.light-theme .committee-card h3,
html.light-theme .pillar-card h3,
html.light-theme .video-body h3,
html.light-theme .news-list-body h3,
html.light-theme .contact-card h4,
html.light-theme .timeline-title {
  color: #0f172a;
}
html.light-theme .mv-card p,
html.light-theme .do-card p,
html.light-theme .info-card p,
html.light-theme .person-card .person-detail,
html.light-theme .committee-card p,
html.light-theme .pillar-card p,
html.light-theme .news-list-body .excerpt,
html.light-theme .timeline-desc {
  color: #475569;
}
html.light-theme .section-divider {
  background: #e2e8f0;
}
html.light-theme .table-wrap {
  background: #ffffff;
  border-color: #e2e8f0;
}
html.light-theme .data-table th {
  background: #f8fafc;
  color: #0f172a;
  border-bottom-color: #cbd5e1;
}
html.light-theme .data-table td {
  color: #475569;
  border-bottom-color: #f1f5f9;
}
html.light-theme .data-table tbody tr:hover {
  background: #f8fafc;
}
html.light-theme .data-table .name {
  color: #0f172a;
}
html.light-theme .search-bar {
  background: #ffffff;
  border-color: #cbd5e1;
}
html.light-theme .search-bar input {
  color: #0f172a;
}
html.light-theme .search-bar input::placeholder {
  color: #94a3b8;
}
html.light-theme .footer {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-top-color: #e2e8f0;
}
html.light-theme .footer-brand .logo-row span {
  color: #0f172a;
}
html.light-theme .footer-brand p {
  color: #475569;
}
html.light-theme .footer-social a {
  background: #ffffff;
  border-color: #cbd5e1;
  color: #475569;
}
html.light-theme .footer-social a:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-muted);
}
html.light-theme .footer-col h4 {
  color: #0f172a;
}
html.light-theme .footer-col a {
  color: #475569;
}
html.light-theme .footer-col a:hover {
  color: var(--accent);
}
html.light-theme .footer-bottom {
  border-top-color: #e2e8f0;
}
html.light-theme .footer-bottom p {
  color: #64748b;
}
html.light-theme .footer-legal a {
  color: #64748b;
}
html.light-theme .footer-legal a:hover {
  color: #0f172a;
}

/* ============ FOOTER ============ */
.footer{position:relative;border-top:1px solid var(--panel-border);padding:80px 32px 36px;margin-top:40px;background:linear-gradient(180deg,rgba(12,20,32,0.82) 0%,rgba(12,20,32,0.96) 100%)}
.footer-grid{max-width:1200px;margin:0 auto;display:grid;grid-template-columns:2fr repeat(4,1fr);gap:40px;position:relative;z-index:2}
@media(max-width:1024px){.footer-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:768px){.footer-grid{grid-template-columns:1fr 1fr;gap:24px}}
@media(max-width:480px){.footer-grid{grid-template-columns:1fr}}
.footer-brand{grid-column:1}
@media(max-width:1024px){.footer-brand{grid-column:1 / -1}}
.footer-brand .logo-row{display:flex;align-items:center;gap:12px;margin-bottom:16px}
.footer-brand .logo-row img{height:48px;width:auto}
.footer-brand .logo-row span{font-family:var(--font-editorial);font-size:20px;font-weight:700}
.footer-brand p{font-size:13px;line-height:1.6;color:var(--text-secondary);max-width:280px}
.footer-social{display:flex;gap:12px;margin-top:16px}
.footer-social a{width:36px;height:36px;border-radius:8px;border:1px solid var(--panel-border);display:flex;align-items:center;justify-content:center;font-size:14px;color:var(--text-secondary);transition:border-color .25s var(--ease-out),color .25s var(--ease-out),background .25s var(--ease-out)}
.footer-social a:hover{border-color:var(--accent);color:var(--accent);background:var(--accent-muted)}
.footer-col h4{font-family:var(--font-body);font-size:12px;font-weight:600;letter-spacing:0.08em;text-transform:uppercase;color:var(--text-primary);margin-bottom:16px}
.footer-col ul{list-style:none}
.footer-col li{margin-bottom:8px}
.footer-col a{font-size:13px;color:var(--text-secondary);transition:color .2s var(--ease-out)}
.footer-col a:hover{color:var(--accent)}
.footer-bottom{max-width:1200px;margin:40px auto 0;padding-top:24px;border-top:1px solid var(--panel-border);display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:12px}
.footer-bottom p{font-size:12px;color:var(--text-secondary)}
.footer-legal{display:flex;gap:20px}
.footer-legal a{font-size:12px;color:var(--text-secondary);transition:color .2s var(--ease-out)}
.footer-legal a:hover{color:var(--text-primary)}

/* ============ ENTRANCE ANIMATIONS ============ */
.reveal{opacity:0;transform:translateY(32px);transition:opacity .7s var(--ease-out),transform .7s var(--ease-out)}
.reveal.in{opacity:1;transform:translateY(0)}
.reveal-children > *{opacity:0;transform:translateY(24px);transition:opacity .5s var(--ease-out),transform .5s var(--ease-out)}
.reveal-children.in > *{opacity:1;transform:translateY(0)}
.reveal-children.in > *:nth-child(1){transition-delay:0s}
.reveal-children.in > *:nth-child(2){transition-delay:.08s}
.reveal-children.in > *:nth-child(3){transition-delay:.14s}
.reveal-children.in > *:nth-child(4){transition-delay:.18s}
.reveal-children.in > *:nth-child(5){transition-delay:.22s}
.reveal-children.in > *:nth-child(6){transition-delay:.26s}
.reveal-children.in > *:nth-child(7){transition-delay:.3s}
.reveal-children.entered > *{transition-delay:0s!important}

/* ============ REDUCED MOTION ============ */
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;animation-iteration-count:1!important;transition-duration:.01ms!important;transition-delay:0s!important}
  .reveal,.reveal-children > *{opacity:1!important;transform:none!important}
}

/* Focus visible */
:focus-visible{outline:2px solid var(--accent);outline-offset:2px;border-radius:4px}


/* ============================================================
   SUB-PAGE SPECIFIC STYLES
   ============================================================ */

/* ---- PAGE HERO (compact) ---- */
.page-hero{
  position:relative;
  padding:140px 32px 64px;
  background-image: linear-gradient(180deg, rgba(12, 20, 32, 0.85) 0%, rgba(12, 20, 32, 0.65) 45%, rgba(12, 20, 32, 0.96) 100%), url('../../assets/about-hero-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow:hidden;
  border-bottom:1px solid var(--panel-border);
  min-height: 440px;
  display: flex;
  align-items: center;
}
.page-hero::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(ellipse 60% 50% at 70% 40%,rgba(21,101,192,0.08),transparent),
             radial-gradient(ellipse 40% 60% at 20% 70%,rgba(232,113,42,0.05),transparent);
  pointer-events:none;
}
.page-hero-inner{
  max-width:1200px;margin:0 auto;position:relative;z-index:2;
}
html.light-theme .page-hero{
  background-image: linear-gradient(180deg, rgba(246, 248, 252, 0.88) 0%, rgba(246, 248, 252, 0.72) 45%, rgba(246, 248, 252, 0.96) 100%), url('../../assets/about-hero-bg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  border-bottom-color:#e2e8f0;
}
html.light-theme .page-hero::before{
  background:radial-gradient(ellipse 60% 50% at 70% 40%,rgba(21,101,192,0.04),transparent),
             radial-gradient(ellipse 40% 60% at 20% 70%,rgba(232,113,42,0.03),transparent);
}

/* ---- BREADCRUMB ---- */
.breadcrumb{
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
  font-size:13px;font-weight:500;color:var(--text-secondary);
  margin-bottom:20px;
}
.breadcrumb a{color:var(--text-secondary);transition:color .2s var(--ease-out)}
.breadcrumb a:hover{color:var(--accent)}
.breadcrumb .sep{opacity:0.4;font-size:11px}
.breadcrumb .current{color:var(--text-primary);font-weight:600}

/* ---- PAGE TITLE ---- */
.page-title{
  font-family:var(--font-display);
  font-size:clamp(32px,5vw,56px);
  line-height:1.08;letter-spacing:0.02em;text-transform:uppercase;
  color:var(--text-primary);margin-bottom:12px;
}
.page-title .accent{color:var(--accent)}
.page-subtitle{
  font-family:var(--font-editorial);
  font-size:clamp(15px,1.8vw,19px);
  line-height:1.55;color:var(--text-secondary);
  max-width:640px;
}

/* ---- OFFICIAL BADGE ---- */
.official-badge{
  display:inline-flex;align-items:center;gap:8px;
  padding:6px 14px;margin-bottom:20px;
  background:rgba(21,101,192,0.12);border:1px solid rgba(21,101,192,0.25);
  border-radius:20px;font-size:11px;font-weight:600;
  letter-spacing:0.08em;text-transform:uppercase;color:var(--kit-blue);
}
.official-badge .badge-dot{width:6px;height:6px;border-radius:50%;background:var(--kit-blue)}

/* ---- CONTENT SECTIONS ---- */
.content-section{
  max-width:1200px;margin:0 auto;
  padding:80px 32px;
}
@media(max-width:768px){.content-section{padding:48px 20px}}

.section-heading{
  font-family:var(--font-display);
  font-size:clamp(24px,3.5vw,38px);
  letter-spacing:0.03em;text-transform:uppercase;
  color:var(--text-primary);margin-bottom:32px;line-height:1.1;
}
.section-heading .accent{color:var(--accent)}

/* ---- PROSE BLOCK ---- */
.prose{max-width:800px}
.prose p{font-size:16px;line-height:1.75;color:var(--text-secondary);margin-bottom:20px}
.prose p:last-child{margin-bottom:0}
.prose strong{color:var(--text-primary);font-weight:600}
.prose ul,.prose ol{margin:0 0 20px 20px;color:var(--text-secondary);font-size:15px;line-height:1.7}
.prose li{margin-bottom:6px}

/* ---- INFO CARDS ---- */
.info-card{
  background:var(--panel);border:1px solid var(--panel-border);border-radius:12px;
  padding:28px;position:relative;overflow:hidden;
  transition:transform .4s var(--ease-out),box-shadow .4s var(--ease-out),border-color .4s var(--ease-out);
}
.info-card:hover{transform:translateY(-3px);box-shadow:0 12px 36px rgba(0,0,0,0.25);border-color:var(--accent-muted)}
.info-card h3{font-family:var(--font-editorial);font-size:18px;font-weight:700;margin-bottom:8px;color:var(--text-primary)}
.info-card p{font-size:14px;line-height:1.6;color:var(--text-secondary)}
.info-card .card-icon{
  width:44px;height:44px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;font-size:20px;
}
.info-card .card-icon.blue{background:rgba(21,101,192,0.12);color:var(--kit-blue)}
.info-card .card-icon.orange{background:var(--accent-muted);color:var(--accent)}
.info-card .card-icon.green{background:rgba(26,158,79,0.12);color:var(--india-green)}

/* ---- GRID LAYOUTS ---- */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
@media(max-width:992px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:768px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

/* ---- DATA TABLE ---- */
.data-table{width:100%;border-collapse:collapse;font-size:14px}
.data-table thead{position:sticky;top:0;z-index:2}
.data-table th{
  padding:12px 16px;text-align:left;
  font-weight:600;font-size:12px;letter-spacing:0.06em;text-transform:uppercase;
  color:var(--text-primary);background:var(--panel);
  border-bottom:2px solid var(--panel-border);
}
.data-table td{
  padding:14px 16px;color:var(--text-secondary);
  border-bottom:1px solid var(--panel-border);
  vertical-align:top;
}
.data-table tbody tr{transition:background .2s var(--ease-out)}
.data-table tbody tr:hover{background:rgba(255,255,255,0.03)}
html.light-theme .data-table tbody tr:hover{background:rgba(0,0,0,0.02)}
.data-table .name{color:var(--text-primary);font-weight:600}
.data-table .role{color:var(--accent);font-size:12px;font-weight:500}

/* Table container with horizontal scroll */
.table-wrap{
  overflow-x:auto;border:1px solid var(--panel-border);border-radius:12px;
  background:var(--panel);
}

/* ---- TIMELINE ---- */
.timeline{position:relative;padding-left:32px}
.timeline::before{
  content:'';position:absolute;left:7px;top:0;bottom:0;width:2px;
  background:linear-gradient(180deg,var(--accent),var(--kit-blue),var(--india-green));
  border-radius:1px;opacity:0.3;
}
.timeline-item{position:relative;padding-bottom:40px}
.timeline-item:last-child{padding-bottom:0}
.timeline-item::before{
  content:'';position:absolute;left:-29px;top:4px;
  width:12px;height:12px;border-radius:50%;
  background:var(--accent);border:3px solid var(--canvas);
  z-index:1;
}
.timeline-item:nth-child(even)::before{background:var(--kit-blue)}
.timeline-item:nth-child(3n)::before{background:var(--india-green)}
.timeline-year{
  font-family:var(--font-display);font-size:24px;
  color:var(--accent);margin-bottom:6px;line-height:1;
}
.timeline-title{font-family:var(--font-editorial);font-size:17px;font-weight:700;color:var(--text-primary);margin-bottom:6px}
.timeline-desc{font-size:14px;line-height:1.6;color:var(--text-secondary);max-width:600px}

/* ---- PERSON CARD ---- */
.person-card{
  background:var(--panel);border:1px solid var(--panel-border);border-radius:12px;
  padding:24px;text-align:center;
  transition:transform .35s var(--ease-out),box-shadow .35s var(--ease-out),border-color .35s var(--ease-out);
}
.person-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,0.2);border-color:rgba(21,101,192,0.25)}
.person-avatar{
  width:72px;height:72px;border-radius:50%;margin:0 auto 14px;
  background:linear-gradient(135deg,rgba(21,101,192,0.15),rgba(232,113,42,0.1));
  display:flex;align-items:center;justify-content:center;
  font-family:var(--font-display);font-size:24px;color:var(--kit-blue);
  border:2px solid var(--panel-border);
}
.person-card .person-name{font-family:var(--font-editorial);font-size:16px;font-weight:700;color:var(--text-primary);margin-bottom:4px}
.person-card .person-role{font-size:12px;color:var(--accent);font-weight:600;letter-spacing:0.03em;text-transform:uppercase;margin-bottom:8px}
.person-card .person-detail{font-size:13px;color:var(--text-secondary);line-height:1.5}

/* ---- STAT PILL ---- */
.stat-row{display:flex;gap:20px;flex-wrap:wrap;margin:32px 0}
.stat-pill{
  display:flex;align-items:center;gap:12px;
  padding:14px 20px;background:var(--panel);
  border:1px solid var(--panel-border);border-radius:10px;
  flex:1;min-width:200px;
}
.stat-pill .stat-value{font-family:var(--font-display);font-size:28px;color:var(--accent);line-height:1}
.stat-pill .stat-text{font-size:13px;color:var(--text-secondary);line-height:1.4}

/* ---- DOWNLOAD ROW ---- */
.download-row{
  display:flex;align-items:center;gap:16px;
  padding:16px 20px;background:var(--panel);
  border:1px solid var(--panel-border);border-radius:10px;
  margin-bottom:12px;
  transition:border-color .25s var(--ease-out),transform .25s var(--ease-out);
}
.download-row:hover{border-color:rgba(232,113,42,0.3);transform:translateX(4px)}
.download-icon{
  width:40px;height:40px;border-radius:8px;
  background:var(--accent-muted);color:var(--accent);
  display:flex;align-items:center;justify-content:center;flex-shrink:0;
}
.download-info{flex:1}
.download-info .dl-name{font-size:14px;font-weight:600;color:var(--text-primary);margin-bottom:2px}
.download-info .dl-meta{font-size:12px;color:var(--text-secondary)}
.download-btn{
  padding:8px 18px;border-radius:6px;font-size:13px;font-weight:600;
  background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.15);
  color:var(--text-primary);transition:all .25s var(--ease-out);cursor:pointer;
  text-decoration:none;display:inline-flex;align-items:center;gap:6px;
}
.download-btn:hover{background:var(--accent);border-color:var(--accent);color:#fff}
html.light-theme .download-btn{background:rgba(0,0,0,0.04);border-color:rgba(0,0,0,0.12);color:#0f172a}

/* ---- GALLERY GRID ---- */
.gallery-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:16px;
}
.gallery-item{
  position:relative;border-radius:10px;overflow:hidden;
  aspect-ratio:4/3;background:var(--panel);
  border:1px solid var(--panel-border);
  cursor:pointer;
}
.gallery-item img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease-out)}
.gallery-item:hover img{transform:scale(1.06)}
.gallery-item .gallery-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg,transparent 50%,rgba(12,20,32,0.85) 100%);
  display:flex;align-items:flex-end;padding:16px;
  opacity:0;transition:opacity .3s var(--ease-out);
}
.gallery-item:hover .gallery-overlay{opacity:1}
.gallery-overlay .gallery-caption{font-size:13px;font-weight:500;color:#fff}

/* ---- NEWS LIST ITEM ---- */
.news-list-item{
  display:flex;gap:20px;
  padding:20px;background:var(--panel);
  border:1px solid var(--panel-border);border-radius:12px;
  margin-bottom:16px;
  transition:border-color .3s var(--ease-out),transform .3s var(--ease-out);
  text-decoration:none;
}
.news-list-item:hover{border-color:rgba(232,113,42,0.3);transform:translateX(4px)}
@media(max-width:768px){.news-list-item{flex-direction:column;gap:12px}}
.news-list-thumb{
  width:180px;min-height:120px;border-radius:8px;overflow:hidden;flex-shrink:0;
  background:var(--panel-border);
}
.news-list-thumb img{width:100%;height:100%;object-fit:cover}
@media(max-width:768px){.news-list-thumb{width:100%;min-height:160px}}
.news-list-body{flex:1;display:flex;flex-direction:column;justify-content:center}
.news-list-body .tag{
  display:inline-block;padding:3px 10px;border-radius:4px;
  font-size:11px;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;
  margin-bottom:8px;width:fit-content;
}
.news-list-body .tag.blue{background:rgba(21,101,192,0.12);color:var(--kit-blue)}
.news-list-body .tag.orange{background:var(--accent-muted);color:var(--accent)}
.news-list-body .tag.green{background:rgba(26,158,79,0.12);color:var(--india-green)}
.news-list-body h3{font-family:var(--font-editorial);font-size:17px;font-weight:700;line-height:1.4;margin-bottom:6px;color:var(--text-primary)}
.news-list-body .date{font-size:12px;color:var(--text-secondary)}
.news-list-body .excerpt{font-size:14px;color:var(--text-secondary);line-height:1.55;margin-top:4px}

/* ---- FILTER TABS ---- */
.filter-tabs{display:flex;gap:8px;flex-wrap:wrap;margin-bottom:32px}
.filter-tab{
  padding:8px 18px;border-radius:20px;font-size:13px;font-weight:500;
  background:rgba(255,255,255,0.05);border:1px solid rgba(255,255,255,0.1);
  color:var(--text-secondary);cursor:pointer;
  transition:all .25s var(--ease-out);
}
.filter-tab:hover{color:var(--text-primary);border-color:rgba(255,255,255,0.2)}
.filter-tab.active{background:var(--accent);border-color:var(--accent);color:#fff}
html.light-theme .filter-tab{background:rgba(0,0,0,0.03);border-color:rgba(0,0,0,0.1);color:#475569}
html.light-theme .filter-tab:hover{color:#0f172a;border-color:rgba(0,0,0,0.2)}
html.light-theme .filter-tab.active{background:var(--accent);border-color:var(--accent);color:#fff}

/* ---- VIDEO CARD ---- */
.video-card{
  background:var(--panel);border:1px solid var(--panel-border);border-radius:12px;
  overflow:hidden;transition:transform .4s var(--ease-out),box-shadow .4s var(--ease-out);
}
.video-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,0.25)}
.video-thumb{
  position:relative;aspect-ratio:16/9;background:#0a0e16;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.video-thumb img{width:100%;height:100%;object-fit:cover;opacity:0.7;transition:opacity .3s var(--ease-out)}
.video-card:hover .video-thumb img{opacity:0.5}
.play-btn{
  position:absolute;width:56px;height:56px;border-radius:50%;
  background:rgba(232,113,42,0.9);display:flex;align-items:center;justify-content:center;
  transition:transform .3s var(--ease-out),background .3s var(--ease-out);
}
.video-card:hover .play-btn{transform:scale(1.1);background:var(--accent)}
.video-body{padding:16px}
.video-body h3{font-family:var(--font-editorial);font-size:15px;font-weight:700;color:var(--text-primary);margin-bottom:4px}
.video-body .video-meta{font-size:12px;color:var(--text-secondary)}

/* ---- DIVIDER ---- */
.section-divider{
  height:1px;background:var(--panel-border);
  max-width:1200px;margin:0 auto;
}

/* ---- EMPTY STATE ---- */
.empty-state{
  text-align:center;padding:60px 20px;
  color:var(--text-secondary);font-size:15px;
}
.empty-state .empty-icon{font-size:48px;margin-bottom:16px;opacity:0.3}

/* ---- SEARCH BAR ---- */
.search-bar{
  display:flex;align-items:center;gap:10px;
  padding:10px 16px;background:var(--panel);
  border:1px solid var(--panel-border);border-radius:10px;
  margin-bottom:24px;max-width:400px;
  transition:border-color .25s var(--ease-out);
}
.search-bar:focus-within{border-color:var(--accent)}
.search-bar input{
  flex:1;background:none;border:none;outline:none;
  font-size:14px;color:var(--text-primary);font-family:var(--font-body);
}
.search-bar input::placeholder{color:var(--text-secondary);opacity:0.6}
.search-bar .search-icon{color:var(--text-secondary);flex-shrink:0}

/* ---- ZONE TAG ---- */
.zone-tag{
  display:inline-block;padding:3px 10px;border-radius:4px;
  font-size:11px;font-weight:600;letter-spacing:0.05em;text-transform:uppercase;
  margin-bottom:8px;
}
.zone-tag.north{background:rgba(21,101,192,0.12);color:var(--kit-blue)}
.zone-tag.south{background:rgba(26,158,79,0.12);color:var(--india-green)}
.zone-tag.east{background:var(--accent-muted);color:var(--accent)}
.zone-tag.west{background:rgba(168,85,247,0.12);color:#a855f7}
.zone-tag.central{background:rgba(234,179,8,0.12);color:#d4a306}
.zone-tag.northeast{background:rgba(20,184,166,0.12);color:#14b8a6}

/* ---- COMMITTEE CARD ---- */
.committee-card{
  background:var(--panel);border:1px solid var(--panel-border);border-radius:12px;
  padding:28px;display:flex;flex-direction:column;
  transition:transform .35s var(--ease-out),box-shadow .35s var(--ease-out),border-color .35s var(--ease-out);
}
.committee-card:hover{transform:translateY(-3px);box-shadow:0 12px 32px rgba(0,0,0,0.2);border-color:rgba(232,113,42,0.2)}
.committee-card .committee-icon{
  width:48px;height:48px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
  margin-bottom:16px;
}
.committee-card h3{font-family:var(--font-editorial);font-size:18px;font-weight:700;margin-bottom:8px;color:var(--text-primary)}
.committee-card p{font-size:14px;color:var(--text-secondary);line-height:1.6;flex:1}
.committee-card .committee-members{
  margin-top:16px;padding-top:14px;border-top:1px solid var(--panel-border);
  font-size:12px;color:var(--text-secondary);
}
.committee-card .committee-members strong{color:var(--text-primary)}

/* ---- PILLAR CARDS ---- */
.pillar-card{
  background:var(--panel);border:1px solid var(--panel-border);border-radius:12px;
  padding:32px;position:relative;overflow:hidden;
}
.pillar-card::before{
  content:'';position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--accent),var(--kit-blue));
}
.pillar-card.green::before{background:linear-gradient(90deg,var(--india-green),var(--kit-blue))}
.pillar-card.blue::before{background:linear-gradient(90deg,var(--kit-blue),#6366f1)}
.pillar-card h3{font-family:var(--font-editorial);font-size:18px;font-weight:700;margin-bottom:10px;color:var(--text-primary)}
.pillar-card p{font-size:14px;line-height:1.65;color:var(--text-secondary)}
.pillar-card .pillar-num{
  font-family:var(--font-display);font-size:48px;
  color:var(--accent);opacity:0.12;position:absolute;
  top:16px;right:20px;line-height:1;
}

/* ---- TWO COLUMN LAYOUT ---- */
.two-col{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
@media(max-width:768px){.two-col{grid-template-columns:1fr;gap:32px}}

/* ---- SIDEBAR LAYOUT ---- */
.sidebar-layout{display:grid;grid-template-columns:280px 1fr;gap:32px}
@media(max-width:992px){.sidebar-layout{grid-template-columns:1fr}}
.sidebar{position:sticky;top:100px}
.sidebar-nav{list-style:none}
.sidebar-nav li{margin-bottom:4px}
.sidebar-nav a{
  display:block;padding:10px 14px;border-radius:8px;
  font-size:14px;color:var(--text-secondary);
  transition:all .2s var(--ease-out);border-left:2px solid transparent;
}
.sidebar-nav a:hover,.sidebar-nav a.active{
  color:var(--text-primary);background:rgba(255,255,255,0.04);
  border-left-color:var(--accent);
}
html.light-theme .sidebar-nav a:hover,html.light-theme .sidebar-nav a.active{
  background:rgba(0,0,0,0.03);
}

/* ---- CONTACT CARD ---- */
.contact-card{
  background:var(--panel);border:1px solid var(--panel-border);border-radius:12px;
  padding:24px;
}
.contact-card h4{font-size:14px;font-weight:600;color:var(--text-primary);margin-bottom:12px}
.contact-row{display:flex;align-items:flex-start;gap:10px;margin-bottom:10px;font-size:13px;color:var(--text-secondary)}
.contact-row:last-child{margin-bottom:0}
.contact-row .contact-icon{color:var(--accent);flex-shrink:0;margin-top:2px}

/* ---- BACK TO TOP ---- */
.back-to-top{
  position:fixed;bottom:32px;right:32px;
  width:44px;height:44px;border-radius:50%;
  background:var(--accent);color:#fff;
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;transform:translateY(12px);
  transition:all .3s var(--ease-out);z-index:90;
  cursor:pointer;border:none;
  box-shadow:0 4px 16px rgba(232,113,42,0.3);
}
.back-to-top.visible{opacity:1;visibility:visible;transform:translateY(0)}
.back-to-top:hover{transform:translateY(-2px);box-shadow:0 8px 24px rgba(232,113,42,0.4)}

/* ============================================================
   ABOUT US PAGE CUSTOM ENHANCEMENTS & IMAGE PLACEHOLDERS
   ============================================================ */

/* Image Placeholder Cards */
.image-placeholder-card {
  position: relative;
  background: var(--panel);
  border: 2px dashed rgba(232, 113, 42, 0.4);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.image-placeholder-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(232, 113, 42, 0.18);
}
.image-placeholder-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s var(--ease-out);
}
.image-placeholder-card:hover img {
  transform: scale(1.03);
}
.img-slot-notice {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 20px;
  text-align: center;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(232,113,42,0.08) 0%, rgba(19,30,46,0.95) 75%);
}
.img-slot-notice .slot-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-muted);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  box-shadow: 0 0 24px rgba(232,113,42,0.25);
  animation: floatIcon 3s ease-in-out infinite;
}
@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.img-slot-notice .slot-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.img-slot-notice .slot-filename {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  background: rgba(0, 0, 0, 0.4);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid var(--panel-border);
  letter-spacing: 0.02em;
  word-break: break-all;
}
html.light-theme .image-placeholder-card {
  border-color: rgba(232, 113, 42, 0.5);
  background: #ffffff;
}
html.light-theme .img-slot-notice {
  background: radial-gradient(circle at center, rgba(232,113,42,0.06) 0%, rgba(255,255,255,0.98) 75%);
}
html.light-theme .img-slot-notice .slot-filename {
  background: #f1f5f9;
  border-color: #cbd5e1;
  color: #0f172a;
}

/* Feature Header Card / Lead Box */
.lead-box {
  background: linear-gradient(135deg, rgba(232, 113, 42, 0.08) 0%, rgba(21, 101, 192, 0.08) 100%);
  border: 1px solid rgba(232, 113, 42, 0.25);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 24px 30px;
  margin-bottom: 40px;
  backdrop-filter: blur(10px);
}
.lead-box p {
  font-family: var(--font-editorial);
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 600;
}
html.light-theme .lead-box {
  background: linear-gradient(135deg, rgba(232, 113, 42, 0.06) 0%, rgba(21, 101, 192, 0.04) 100%);
  border-color: rgba(232, 113, 42, 0.3);
}

/* Feature Bullet Cards */
.bullet-card-list {
  display: grid;
  gap: 16px;
  margin-top: 20px;
}
.bullet-card-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: all 0.3s var(--ease-out);
}
.bullet-card-item:hover {
  border-color: var(--accent);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.bullet-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent-muted);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.bullet-icon.green {
  background: rgba(26, 158, 79, 0.15);
  color: var(--india-green);
}
.bullet-icon.blue {
  background: rgba(21, 101, 192, 0.15);
  color: var(--kit-blue);
}
.bullet-card-item p {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* Mission & Vision Twin Cards */
.mv-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}
.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--kit-blue));
}
.mv-card.vision-card::before {
  background: linear-gradient(90deg, var(--kit-blue), var(--india-green));
}
.mv-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
  border-color: var(--accent-muted);
}
.mv-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.mv-badge.mission { background: var(--accent-muted); color: var(--accent); }
.mv-badge.vision { background: rgba(21, 101, 192, 0.15); color: var(--kit-blue); }

.mv-card h3 {
  font-family: var(--font-editorial);
  font-size: 26px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}
.mv-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* What We Do Cards */
.do-card {
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  padding: 28px;
  position: relative;
  transition: all 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.do-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.25);
}
.do-card-num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--accent);
  opacity: 0.25;
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
}
.do-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.do-card-icon.accent { background: var(--accent-muted); color: var(--accent); }
.do-card-icon.blue { background: rgba(21, 101, 192, 0.15); color: var(--kit-blue); }
.do-card-icon.green { background: rgba(26, 158, 79, 0.15); color: var(--india-green); }
.do-card-icon.purple { background: rgba(168, 85, 247, 0.15); color: #a855f7; }
.do-card-icon.yellow { background: rgba(234, 179, 8, 0.15); color: #eab308; }

.do-card h3 {
  font-family: var(--font-editorial);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.do-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* Image Grid Layouts */
.img-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.img-grid-1 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 24px;
}
@media(max-width: 640px) {
  .img-grid-2 { grid-template-columns: 1fr; }
}

/* Section Header Eyebrows */
.sub-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
}
.sub-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ---- CHAIRMAN'S MESSAGE SECTION ---- */
.chairman-section {
  position: relative;
  padding: 80px 32px;
  background: linear-gradient(135deg, rgba(15,25,40,0.95) 0%, rgba(10,15,26,0.98) 100%);
  border-top: 1px solid var(--panel-border);
  border-bottom: 1px solid var(--panel-border);
  overflow: hidden;
}
.chairman-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 50%, rgba(232,113,42,0.06), transparent 50%),
              radial-gradient(circle at 90% 50%, rgba(21,101,192,0.08), transparent 50%);
  pointer-events: none;
}
.chairman-container {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .chairman-container {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }
}
.chairman-avatar-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 36px 24px;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.chairman-avatar-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, var(--accent), #1565c0);
  box-shadow: 0 8px 24px rgba(232, 113, 42, 0.3);
  overflow: hidden;
}
.chairman-avatar-wrapper img.chairman-avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  display: block;
}
.chairman-avatar-wrapper svg {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: var(--surface);
  color: var(--text-secondary);
  padding: 24px;
}
.chairman-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.chairman-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.chairman-quote-icon {
  font-size: 56px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.35;
  font-family: Georgia, serif;
  margin-bottom: -16px;
}
.chairman-quote-text {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.45;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 20px;
}
.chairman-body-p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 14px;
}


/* ============================================================
   ANIMATED GALLERY CAROUSEL & GOOGLE DRIVE MEDIA VAULT
   ============================================================ */

/* ---- CAROUSEL CONTAINER ---- */
.gallery-carousel-wrap {
  position: relative;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto 48px;
  border-radius: 18px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
html.light-theme .gallery-carousel-wrap {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.06);
  background: #ffffff;
}

.carousel-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 540px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 6s ease;
}

.carousel-slide.active img {
  transform: scale(1.04);
}

.carousel-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12,20,32,0.1) 0%, rgba(12,20,32,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #ffffff;
}

.carousel-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent-muted);
  color: var(--accent);
  margin-bottom: 12px;
  width: fit-content;
}

.carousel-slide-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3.5vw, 36px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 8px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.carousel-slide-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  line-height: 1.5;
}

/* CAROUSEL CONTROLS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(12, 20, 32, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s ease;
  backdrop-filter: blur(8px);
}
.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 4px 20px rgba(232, 113, 42, 0.4);
}
.carousel-btn.prev { left: 20px; }
.carousel-btn.next { right: 20px; }

/* CAROUSEL PAGINATION & INDICATORS */
.carousel-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--panel);
  border-top: 1px solid var(--panel-border);
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(143, 163, 184, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.carousel-dot.active {
  width: 28px;
  border-radius: 6px;
  background: var(--accent);
}

.carousel-counter {
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-secondary);
}
.carousel-counter span.current {
  color: var(--accent);
  font-size: 18px;
}

/* ---- DRIVE VAULT BANNER (NON-IFRAME) ---- */
.drive-vault-card {
  position: relative;
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.12) 0%, rgba(232, 113, 42, 0.1) 100%);
  border: 1px solid rgba(21, 101, 192, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin-bottom: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 860px) {
  .drive-vault-card {
    flex-direction: column;
    text-align: center;
  }
}
html.light-theme .drive-vault-card {
  background: linear-gradient(135deg, rgba(21, 101, 192, 0.06) 0%, rgba(232, 113, 42, 0.05) 100%);
  border-color: rgba(21, 101, 192, 0.2);
}

.drive-vault-info {
  max-width: 620px;
}

.drive-vault-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(21, 101, 192, 0.15);
  color: var(--kit-blue);
  margin-bottom: 12px;
}

.drive-vault-title {
  font-family: var(--font-editorial);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.drive-vault-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

.drive-vault-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 10px;
  background: var(--kit-blue);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.25s var(--ease-out);
  box-shadow: 0 4px 16px rgba(21, 101, 192, 0.3);
}
.drive-vault-cta:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(21, 101, 192, 0.45);
  color: #ffffff;
}

/* ---- LIGHTBOX MODAL ---- */
.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-modal.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 1000px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  margin-top: 16px;
  font-size: 15px;
  color: #ffffff;
  text-align: center;
  font-family: var(--font-body);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
}
.lightbox-close:hover {
  background: var(--accent);
  border-color: var(--accent);
}

