/* ===================== RESET & BASE ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --dark: #0a0a0a;
  --dark2: #111111;
  --dark3: #181818;
  --dark4: #1e1e1e;
  --text: #e8e0d0;
  --text-muted: #9a9080;
  --border: rgba(201,168,76,0.2);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.7) 50%,
    rgba(0,0,0,0.9) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 0 20px;
}

.hero-badge {
  font-family: 'Georgia', serif;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.hero-white { color: #ffffff; font-weight: 700; }
.hero-gold  { color: #c9a84c; font-weight: 400; font-style: italic; }

.hero-logo {
  /*max-width: 280px;*/
  /*width: 100%;*/
  margin: 0 auto;
  filter: drop-shadow(0 4px 20px rgba(201,168,76,0.3));
}

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-indicator span {
  display: block;
  width: 2px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto;
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { opacity: 1; transform: scaleY(1) translateY(0); }
  100% { opacity: 0; transform: scaleY(0.3) translateY(20px); }
}

.logo-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;   
  gap: 20px;
  flex-wrap: nowrap;         
}

/*.hero-logo {*/
/*  height: 100px;*/
/*  width: auto;*/
/*  display: block;           */
/*}*/

/* ===================== SECTION LABELS ===================== */
.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.25;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto 40px;
}


/* ===================== GLIMPSES ===================== */
.glimpses {
  padding: 70px 0 80px;
  background: #1e1a16;
  text-align: center;
}

.glimpses-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 400;
  color: #d4824a;
  font-family: 'Georgia', serif;
  margin-bottom: 36px;
  font-style: italic;
}

.glimpses-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 860px;
  margin: 0 auto;
}

.gc-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 14px;
}

.gc-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gc-slide {
  flex: 0 0 100%;
  position: relative;
}

.gc-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.gc-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 22px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  font-family: 'Georgia', serif;
  text-align: left;
  border-radius: 0 0 14px 14px;
}

.gc-arrow {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 3rem;
  cursor: pointer;
  padding: 0 14px;
  transition: color 0.2s;
  line-height: 1;
  flex-shrink: 0;
  z-index: 2;
}

.gc-arrow:hover { color: #fff; }

.gc-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.gc-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: background 0.3s;
}

.gc-dot.active {
  background: #e07b20;
}

@media (max-width: 600px) {
  .gc-slide img { height: 260px; }
  .gc-arrow { font-size: 2rem; padding: 0 8px; }
}

/* ===================== TIMELINE HORIZONTAL SLIDER ===================== */
.timeline-section {
  padding: 80px 0 100px;
  background: #faf8f4;
  overflow: hidden;
}

.tl-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.tl-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.tl-header-text { flex: 1; }

.tl-label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #e07b20;
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.tl-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
  line-height: 1.2;
  font-family: 'Georgia', serif;
}

.tl-sub {
  font-size: 0.95rem;
  color: #888;
  font-family: 'Georgia', serif;
}

.tl-nav {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  padding-bottom: 4px;
}

.tl-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #555;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  line-height: 1;
}

.tl-btn:hover {
  border-color: #e07b20;
  color: #e07b20;
}

.tl-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.tl-track-wrapper {
  overflow: hidden;
  position: relative;
}

.tl-track {
  display: flex;
  gap: 20px;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.tl-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 220px;
  background: #fff;
  border: 1.5px solid #e8e2d8;
  border-radius: 12px;
  padding: 28px 24px 32px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.tl-card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: #ccc;
}

.tl-card.active {
  background: #e07b20;
  border-color: #e07b20;
}

.tl-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  background: transparent;
}

.tl-card.active .tl-icon {
  border-color: rgba(255,255,255,0.5);
}

.tl-icon svg {
  width: 20px;
  height: 20px;
  color: #8a7a6a;
}

.tl-card.active .tl-icon svg {
  color: rgba(255,255,255,0.9);
}

.tl-year {
  font-size: 1.35rem;
  font-weight: 700;
  color: #e07b20;
  margin-bottom: 10px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.01em;
}

.tl-card.active .tl-year {
  color: #fff;
}

.tl-event {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.55;
  font-family: 'Georgia', serif;
}

.tl-card.active .tl-event {
  color: rgba(255,255,255,0.9);
}

@media (max-width: 900px) {
  .tl-card { flex: 0 0 calc(50% - 10px); }
  .tl-header { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 550px) {
  .tl-card { flex: 0 0 85%; }
}

/* ===================== THEN & NOW ===================== */
.then-now {
  padding: 100px 0;
  background: var(--dark2);
  text-align: center;
}

.comparison-slider-wrapper {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  cursor: ew-resize;
  border: 1px solid var(--border);
  user-select: none;
}

.img-now,
.img-then {
  position: absolute;
  inset: 0;
}

.img-now img,
.img-then img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-then {
  width: 50%;
  overflow: hidden;
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: ew-resize;
}

.slider-handle::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gold);
  transform: translateX(-50%);
}

.slider-handle span {
  background: var(--gold);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 11;
  position: relative;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.year-label {
  position: absolute;
  bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.05em;
  z-index: 5;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
  pointer-events: none;
}

.year-left { left: 20px; }
.year-right { right: 20px; }

/* ===================== FOUNDER ===================== */
.founder {
  padding: 100px 0;
  background: #faf8f2;
}

.founder .section-label {
  color: #c86b1a;
  font-size: 0.75rem;
  margin-bottom: 8px;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: center;
}

.founder-img-wrap {
  position: relative;
}

.founder-img-wrap img {
  width: 100%;
  max-width: 340px;
  border-radius: 12px;
  border: 1px solid #d8cfc0;
  filter: grayscale(20%);
}

.founder-quote-mark {
  position: absolute;
  top: -20px;
  left: -20px;
  font-size: 8rem;
  color: #c9a84c;
  opacity: 0.12;
  line-height: 1;
  font-family: Georgia, serif;
}

.founder-text h2 { display: none; }

.founder-role { display: none; }

.founder-text p {
  margin-bottom: 14px;
  color: #3a3228;
  font-size: 0.97rem;
  line-height: 1.75;
}

.founder-text strong { color: #1a1208; }

.founder-bullets {
  list-style: none;
  margin-bottom: 16px;
  padding-left: 0;
}

.founder-bullets li {
  padding: 5px 0 5px 22px;
  position: relative;
  color: #3a3228;
  font-size: 0.95rem;
}

.founder-bullets li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c86b1a;
}

.quote-text {
  font-style: italic;
  color: #8b6520;
  font-size: 1.0rem;
  margin-top: 20px !important;
  border: none;
  padding: 0;
}

.founder-signature-block {
  margin-top: 28px;
}

.founder-divider {
  width: 60%;
  height: 1px;
  background: #d8cfc0;
  margin-bottom: 16px;
}

.founder-sig-name {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.45rem;
  color: #8b6520;
  margin-bottom: 4px !important;
  letter-spacing: 0.01em;
}

.founder-sig-role {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 0 !important;
}

/* ===================== LEADERSHIP ===================== */
.leadership {
  padding: 0 100px 100px 100px;
  background: #faf8f2;
  text-align: center;
}

.leadership .section-label {
  color: #c86b1a;
  letter-spacing: 0.2em;
}

.ldr-title {
  color: #1a1412 !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
}

.ldr-gold { color: #8b6520; }

.leadership-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: center;
  max-width: 100%;
  margin: 56px auto 0;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  text-align: left;
}

.leadership-card img {
  width: 100%;
  max-width: 220px;
  border-radius: 10px;
  filter: grayscale(10%);
  margin: 0 auto;
  display: block;
  justify-self: center;
}

.leadership-text h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: #1a1412;
  margin-bottom: 4px;
}

.role-tag {
  color: #888;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.leadership-text p {
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: #3a3228;
  line-height: 1.75;
}

.leadership-text strong { color: #1a1412; }

.italic-quote {
  font-style: italic;
  color: #c86b1a;
  margin-top: 12px;
  border: none;
  padding: 0;
  font-size: 0.97rem;
}

/* ===================== GLOBAL AUTHORITY ===================== */
.global {
  padding: 90px 0 100px;
  background: #eeedf1;
  text-align: center;
}

.global-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b07040;
  margin-bottom: 14px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.global-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  font-family: 'Georgia', serif;
  line-height: 1.25;
}

.global-gold { color: #8b6914; }

.global-sub {
  font-size: 0.95rem;
  color: #666;
  max-width: 580px;
  margin: 0 auto 48px;
  line-height: 1.7;
  font-family: 'Georgia', serif;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.logo-card {
  background: #fff;
  border: 1.5px solid #e0dde8;
  border-radius: 10px;
  padding: 20px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  transition: box-shadow 0.25s ease;
}

.logo-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.logo-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

@media (max-width: 700px) {
  .logos-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 450px) {
  .logos-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===================== STATS ===================== */
.stats {
 padding: 0 100px 100px 100px;
  background: #eeedf1;
  text-align: center;
}

.stats .section-title {
  color: #1a2040;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  font-weight: 700;
}

.stats .section-sub {
  color: #666;
  margin-top: 8px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 36px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.stat-item:hover { transform: translateY(-4px); }

.stat-num {
  font-size: 3.5rem;
  font-weight: 400;
  color: #8b6520;
  line-height: 1;
  font-family: 'Georgia', serif;
}

.stat-plus {
  font-size: 2rem;
  color: #8b6520;
  font-weight: 400;
  vertical-align: top;
  line-height: 1.2;
  font-family: 'Georgia', serif;
}

.stat-item p {
  margin-top: 12px;
  font-size: 0.82rem;
  color: #555;
  text-align: center;
  letter-spacing: 0.01em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* ===================== FACILITIES ===================== */
.facilities {
  padding: 0 0 100px;
  background: #eeedf1;
  text-align: center;
}

.fac-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #b07040;
  margin-bottom: 32px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  display: block;
}

.fac-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.fac-viewport {
  flex: 1;
  overflow: hidden;
}

.fac-track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.fac-slide {
  flex: 0 0 calc(50% - 8px);
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.fac-slide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.fac-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 50px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  text-align: left;
}

.fac-caption h4 {
  font-size: 1.1rem;
  color: #fff;
  font-family: 'Georgia', serif;
  margin-bottom: 3px;
}

.fac-caption p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.8);
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.fac-arrow {
  background: rgba(255,255,255,0.85);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1.4rem;
  color: #444;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 10px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.fac-arrow:hover { background: #fff; color: #000; }
.fac-arrow:disabled { opacity: 0.3; cursor: not-allowed; }

.fac-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.fac-dot {
  width: 28px;
  height: 4px;
  border-radius: 2px;
  background: #ccc;
  cursor: pointer;
  transition: background 0.3s;
}

.fac-dot.active { background: #e07b20; }

@media (max-width: 640px) {
  .fac-slide { flex: 0 0 85%; }
  .fac-slide img { height: 220px; }
}

/* ===================== CORE VALUES ===================== */
.values {
  padding: 90px 0 100px;
  background: #2a2420;
  text-align: center;
}

.values-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #d4722a;
  margin-bottom: 48px;
  font-family: 'Georgia', serif;
  line-height: 1.2;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 0;
}

.value-card {
  background: #fff;
  border: none;
  border-radius: 12px;
  padding: 36px 24px 32px;
  text-align: center;
  flex: 0 0 calc(33.333% - 14px);
  min-width: 220px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.2);
}

.val-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #faf5ee;
  border: 1.5px solid #d4a96a;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: #b07030;
}

.value-card h3 {
  font-size: 1.05rem;
  color: #1a1412;
  margin-bottom: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.value-card p {
  font-size: 0.88rem;
  color: #666;
  font-style: italic;
  line-height: 1.65;
  font-family: 'Georgia', serif;
}

/* ===================== VISION ===================== */
.vision {
  padding: 120px 0;
  background: var(--dark3);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.vision::before {
  content: '60';
  position: absolute;
  font-size: 28rem;
  font-weight: 900;
  color: rgba(201,168,76,0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -0.05em;
}

.vision-text {
  max-width: 640px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  color: var(--text-muted);
}

.vision-tags {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.vision-tags span {
  font-size: 0.85rem;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, #e07b20, #c95f10);
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.04em;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 4px 20px rgba(224,123,32,0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(224,123,32,0.4);
}

/* ===================== FAQ ===================== */
.faq {
  padding: 100px 0;
  background: var(--dark2);
}

.faq .section-title { text-align: center; }

.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-family: 'Georgia', serif;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--gold); }

.faq-icon {
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 300;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 48px 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  max-width: 160px;
  opacity: 0.8;
}

.footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ===================== REVEAL ANIMATION ===================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .glimpses-grid { grid-template-columns: 1fr; }
  .founder-inner { grid-template-columns: 1fr; }
  .founder-img-wrap img { max-width: 240px; }
  .leadership-card { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .facilities-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 70px; }
}

@media (max-width: 600px) {
  .hero h1 { font-size: 1.7rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .facilities-grid { grid-template-columns: 1fr; }
  .comparison-slider { height: 260px; }
  .section-title { font-size: 1.5rem; }
  .timeline::before { left: 60px; }
  .year { min-width: 55px; font-size: 0.8rem; }
}

.leadership-card{
    display: flex;
    align-items: flex-start;
    gap: 50px;
}

.leadership-card img{
    width: 320px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.leadership-text{
    flex: 1;
     width:100%;
}

@media(max-width:768px){
    .leadership-card{
        flex-direction: column;
        text-align: center;
    }

    .leadership-card img{
        width: 250px;
    }
}



