/* ═══════════════════════════════════════════
   TOKENS
═══════════════════════════════════════════ */

.highlight{font-style: italic;
  color: rgba(201,146,10,0.85);}
        .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            width: 90%;
            max-width: 1200px;
            padding: 40px;
        }

        .logo-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: border-color 0.3s ease;
        }

        .logo-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        }

        .logo-name {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .logo-desc {
            font-size: 0.9rem;
            color: #94a3b8;
            opacity: 0;
            transform: translateY(10px);
            height: 0;
            transition: all 0.3s ease;
        }

        /* Hover State managed by GSAP, but basic fallback here */
        .logo-card:hover {
            border-color: var(--accent);
        }


:root {
	--card-bg: #1e293b;
	--text-main: #f8fafc;
	--accent: #38bdf8;
  --navy:        #0a1628;
  --navy-mid:    #112040;
  --navy-light:  #1a3060;
  --navy-pale:   #e8edf5;
  --blue-accent: #1e4db7;
  --gold:        #c9920a;
  --gold-light:  #e8aa18;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --gray-100:    #f2f4f8;
  --gray-200:    #e2e8f0;
  --gray-400:    #94a3b8;
  --gray-600:    #475569;
  --gray-800:    #1e293b;
  --text:        #0f1f3d;
  --text-mid:    #334155;
  --text-muted:  #64748b;
  --shadow-sm:   0 2px 8px rgba(10,22,40,0.08);
  --shadow-md:   0 8px 28px rgba(10,22,40,0.12);
  --shadow-lg:   0 20px 60px rgba(10,22,40,0.18);
  --r:           3px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', system-ui, sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--navy); border-radius: 2px; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY SYSTEM
═══════════════════════════════════════════ */
.display-xl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 6vw, 84px);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.5px;
}
.display-lg {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 600;
  line-height: 1.1;
}
.display-md {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.15;
}
.eyebrow {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}
.body-lg { font-size: 17px; line-height: 1.75; font-weight: 300; color: var(--text-mid); }
.body-md { font-size: 15px; line-height: 1.7; font-weight: 300; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 48px; }
section { padding: 100px 0; }

/* ═══════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
#nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo-mark {
  width: 180px; 
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.nav-logo-mark::before {
  /*content: '';
  position: absolute; top: -10px; right: -10px;
  width: 30px; height: 30px;
  background: var(--gold);
  transform: rotate(45deg);*/
}
.nav-logo-mark span {
  font-family: 'Cinzel', serif;
  font-size: 15px; font-weight: 700;
  color: var(--white); position: relative; z-index: 1;
}
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-name {
  font-family: 'Cinzel', serif;
  font-size: 16px; font-weight: 700;
  color: var(--navy); line-height: 1;
}
.nav-logo-sub {
  font-size: 9px; letter-spacing: 2.5px;
  color: var(--text-muted); text-transform: uppercase;
}
.nav-links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav-links a {
  font-size: 13px; font-weight: 500; letter-spacing: 0.3px;
  color: var(--text-mid); transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1.5px; background: var(--navy);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-btn {
  background: var(--navy); color: var(--white) !important;
  padding: 9px 24px !important; font-weight: 500 !important;
  border-radius: var(--r); transition: background 0.2s, transform 0.2s !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--navy-light) !important; transform: translateY(-1px) !important; }

/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}

/* Geometric background pattern */
.hero-geo {
  position: absolute; inset: 0; overflow: hidden;
}
.hero-geo svg { width: 100%; height: 100%; position: absolute; inset: 0; }

.hero-img-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 48%;
  overflow: hidden;
}
.hero-img-panel img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.35) saturate(0.6);
}
.hero-img-panel::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, transparent 40%);
  z-index: 1;
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 620px;
  padding: 80px 0;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow-line { width: 32px; height: 1.5px; background: var(--gold); }
.hero-eyebrow span { font-family: 'Cinzel', serif; font-size: 10px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; }
.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 300;
  line-height: 1.04;
  color: var(--white);
  margin-bottom: 8px;
}
.hero-title strong {
  font-weight: 600;
  color: var(--white);
  display: block;
}
.hero-title em {
  font-style: italic;
  color: rgba(201,146,10,0.85);
}
.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin: 28px 0 44px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy);
  padding: 13px 30px; border-radius: var(--r);
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  transition: all 0.25s;
}
.btn-white:hover { background: var(--off-white); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(255,255,255,0.15); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: rgba(255,255,255,0.75);
  padding: 13px 30px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px; font-weight: 400; letter-spacing: 0.3px;
  transition: all 0.25s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.hero-stats {
  position: absolute; bottom: 48px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.h-stat {
  padding: 20px 36px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.h-stat:last-child { border-right: none; }
.h-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px; font-weight: 700;
  color: var(--white); line-height: 1;
}
.h-stat-lbl {
  font-size: 10px; letter-spacing: 2px;
  color: rgba(255,255,255,0.4); text-transform: uppercase;
  margin-top: 4px;
}

/* ═══════════════════════════════════════════
   SECTION HEADERS
═══════════════════════════════════════════ */
.sec-header { margin-bottom: 64px; }
.sec-header.centered { text-align: center; }
.sec-header.centered .sec-rule { margin: 16px auto; }
.sec-rule {
  width: 48px; height: 2px;
  background: linear-gradient(to right, var(--navy), var(--gold));
  margin: 16px 0;
}
.sec-title { color: var(--navy); margin-top: 8px; }
.sec-sub { max-width: 540px; margin-top: 14px; }
.sec-header.centered .sec-sub { margin: 14px auto 0; }

/* ═══════════════════════════════════════════
   TICKER / VERTICALS STRIP
═══════════════════════════════════════════ */
.ticker-strip {
  background: var(--navy); padding: 18px 0;
  border-top: 2px solid var(--gold);
  overflow: hidden;
}
.ticker-track {
  display: flex; width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  display: flex; align-items: center; gap: 16px;
  padding: 0 28px; white-space: nowrap;
}
.ticker-item span {
  font-family: 'Cinzel', serif;
  font-size: 10.5px; letter-spacing: 3px;
  color: rgba(255,255,255,0.65); text-transform: uppercase;
}
.ticker-dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════ */
.about { background: var(--white); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  filter: brightness(0.9);
}
.about-img-accent {
  position: absolute;
  bottom: -28px; right: -28px;
  width: 55%; aspect-ratio: 1;
  object-fit: cover;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-badge {
  position: absolute; top: 28px; left: 28px;
  background: var(--navy);
  padding: 16px 20px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.about-badge-lbl {
  font-size: 9px; letter-spacing: 2px;
  color: rgba(255,255,255,0.6); text-transform: uppercase;
}
.about-values { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.about-value {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
  border-left: 3px solid var(--navy);
  transition: border-left-color 0.25s, box-shadow 0.25s;
}
.about-value:hover { border-left-color: var(--gold); box-shadow: var(--shadow-sm); }
.about-value-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: var(--navy-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.about-value-title {
  font-size: 13px; font-weight: 600; color: var(--navy);
  margin-bottom: 3px; letter-spacing: 0.3px;
}
.about-value-desc { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   VISION & MISSION
═══════════════════════════════════════════ */
.vm { background: var(--navy); position: relative; overflow: hidden; }
.vm::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  border: 1px solid rgba(201,146,10,0.1);
  border-radius: 50%;
}
.vm::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 50%;
}
.vm-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; position: relative; z-index: 2;
}
.vm-card {
  padding: 64px 56px;
  position: relative; overflow: hidden;
}
.vm-card-vision { background: rgba(255,255,255,0.04); }
.vm-card-mission { background: rgba(255,255,255,0.02); }
.vm-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.vm-card-bg-letter {
  position: absolute; top: -20px; right: -10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 160px; font-weight: 700;
  color: rgba(255,255,255,0.03);
  line-height: 1; pointer-events: none;
  user-select: none;
}
.vm-eyebrow { font-family: 'Cinzel', serif; font-size: 15px; letter-spacing: 4px; color: var(--gold); text-transform: uppercase; margin-bottom: 20px; }
.vm-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 38px; font-weight: 600;
  color: var(--white); line-height: 1.15;
  margin-bottom: 24px;
}
.vm-text ,.vm-card-vision p ,.vm-card-mission p{ font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.55); font-weight: 300; }
.vm-points ,.vm-card-vision ul ,.vm-card-mission ul{ margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
.vm-point ,.vm-card-vision ul li,.vm-card-mission ul li{
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; color: rgba(255,255,255,0.65);
}








.vm-point::before {
  content: ''; width: 20px; height: 1px; background: var(--gold); flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   CHAIRMAN'S MESSAGE
═══════════════════════════════════════════ */
.chairman { background: var(--off-white); }
.chairman-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 80px; align-items: start;
}
.chairman-img-wrap { position: relative; }
.chairman-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(15%);
}
.chairman-name-plate {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--navy); padding: 20px 24px;
}
.chairman-name,.chairman-name-plate h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 600;
  color: var(--white); line-height: 1.2;
}
.chairman-designation ,.chairman-name-plate h4  {
  font-size: 10px; letter-spacing: 2px;
  color: var(--gold); text-transform: uppercase;
  margin-top: 4px;
}
.chairman-content { padding-top: 8px; }
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 96px; font-weight: 700;
  color: var(--navy); line-height: 0.7;
  margin-bottom: 20px; display: block;
  opacity: 0.12;
}
.chairman-content blockquote{
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; font-style: italic;
  color: var(--navy); line-height: 1.45;
  margin-bottom: 28px;
  border-left: 3px solid var(--gold);
  padding-left: 24px;
}
.chairman-body ,.chairman-content p {
  font-size: 15px; line-height: 1.8; font-weight: 300;
  color: var(--text-mid); margin-bottom: 16px;
}
.chairman-sig {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid var(--gray-200);
  display: flex; align-items: center; gap: 20px;
}
.sig-line {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-style: italic;
  color: var(--navy); line-height: 1;
}
.sig-meta { font-size: 12px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   BUSINESS VERTICALS
═══════════════════════════════════════════ */
.verticals { background: var(--white); }
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--gray-200);
  border: 1px solid var(--gray-200);
  margin-top: 60px;
}
.vertical-card {
  background: var(--white);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  position: relative; overflow: hidden;
}
.vertical-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--navy), var(--blue-accent));
  transform: scaleX(0); transition: transform 0.3s;
}
.vertical-card:hover { background: var(--navy); }
.vertical-card:hover::before { transform: scaleX(1); }
.vertical-card:hover .vertical-icon { background: rgba(255,255,255,0.1); }
.vertical-card:hover .vertical-name { color: var(--white); }
.vertical-card:hover .vertical-desc { color: rgba(255,255,255,0.5); }
.vertical-icon {
  width: 56px; height: 56px;
  background: var(--navy-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 16px;
  transition: background 0.3s;
}
.vertical-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
  transition: color 0.3s; line-height: 1.3;
}
.vertical-desc {
  font-size: 11.5px; color: var(--text-muted);
  line-height: 1.5; transition: color 0.3s;
}

/* ═══════════════════════════════════════════
   EMPLOYEE SECTION
═══════════════════════════════════════════ */
/*.employees { background: var(--gray-100); }
.emp-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-bottom: 72px;
}
.emp-intro-img {
  width: 100%; aspect-ratio: 16/9; object-fit: cover;
}
.emp-pillars {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 60px;
}
.emp-pillar {
  background: var(--white);
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-radius: var(--r);
  transition: all 0.3s;
  position: relative;
}
.emp-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.emp-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700;
  color: var(--navy-pale);
  line-height: 1; margin-bottom: 12px;
}
.emp-pillar-title {
  font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.emp-pillar-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.emp-highlight {
  margin-top: 60px;
  background: var(--navy);
  padding: 48px 56px;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 0; align-items: center;
}
.emp-hl-item { padding: 0 40px; text-align: center; }
.emp-hl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.emp-hl-lbl {
  font-size: 11px; letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5); text-transform: uppercase;
  margin-top: 6px;
}
.emp-hl-sep { height: 60px; background: rgba(255,255,255,0.1); }*/





/* ===============================
   EMPLOYEE SECTION FIX
=============================== */

/* INTRO SECTION */







.emp-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--navy); }
.emp-pillar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px; font-weight: 700;
  color: var(--navy-pale);
  line-height: 1; margin-bottom: 12px;
}
.emp-pillar-title {
  font-size: 14px; font-weight: 600;
  color: var(--navy); margin-bottom: 8px;
}
.emp-pillar-text { font-size: 13px; color: var(--text-muted); line-height: 1.6; }





.emp-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.emp-intro-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* PILLARS GRID */
.emp-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.emp-pillar {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.emp-pillar:hover {
  transform: translateY(-5px);
}

/* HIGHLIGHT SECTION */
.emp-highlight {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 50px;
  gap: 20px;
    margin-top: 60px;
  background: var(--navy);
  padding: 48px 56px;
}



.emp-hl-lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  margin-top: 6px;
}


.emp-hl-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}


.emp-hl-item {
  text-align: center;
  flex: 1;
}

.emp-hl-sep {
  width: 1px;
  height: 40px;
  background: #ddd;
}

/* ===============================
   TABLET
=============================== */
@media (max-width: 1024px) {

  .emp-pillars {
    grid-template-columns: repeat(2, 1fr);
  }

  .emp-intro {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

  .emp-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .emp-pillars {
    grid-template-columns: 1fr;
  }

  .emp-highlight {
    flex-direction: column;
  }

  .emp-hl-sep {
    width: 60%;
    height: 1px;
  }

  .emp-hl-item {
    padding: 10px 0;
  }
}

/* ===============================
   SMALL MOBILE
=============================== */
@media (max-width: 480px) {

  .emp-pillar {
    padding: 16px;
  }

  .emp-pillar-title {
    font-size: 14px;
  }

  .emp-pillar-text {
    font-size: 13px;
  }

  .emp-hl-num {
    font-size: 22px;
  }
  .sec-rule{display:none}
  .sec-header{margin-bottom:0px;}
}




/* ═══════════════════════════════════════════
   LEADERSHIP
═══════════════════════════════════════════ */
.leadership { background: var(--white); }
.leadership-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 28px; margin-top: 60px;
}
.leader-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  overflow: hidden; transition: all 0.3s;
}
.leader-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.leader-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(20%); transition: filter 0.4s;
}
.leader-card:hover .leader-img { filter: grayscale(0%); }
.leader-info { padding: 20px; background: var(--white); }
.leader-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 600;
  color: var(--navy); line-height: 1.2; margin-bottom: 4px;
}
.leader-title {
  font-size: 11px; letter-spacing: 1.5px;
  color: var(--gold); text-transform: uppercase;
}
.leader-dept {
  font-size: 12px; color: var(--text-muted);
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--gray-200);
}

/* ═══════════════════════════════════════════
   CSR / VALUES
═══════════════════════════════════════════ */

.csr {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.csr-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 32px; margin-top: 60px;
}
.csr-card {
  border: 1px solid rgba(255,255,255,0.08);
  padding: 36px 28px;
  transition: border-color 0.3s;
  position: relative;
}
.csr-card:hover { border-color: rgba(201,146,10,0.4); }
.csr-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0); transition: transform 0.3s;
}
.csr-card:hover::after { transform: scaleX(1); }
.csr-icon { font-size: 32px; /*margin-bottom: 20px;*/ }
.csr-title {
 /* font-family: 'Cormorant Garamond', serif;*/
  font-size: 24px; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.csr-text { font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.5); font-weight: 300; }


/* ===============================
   CSR GRID FIX
=============================== */

.csr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

/* CARD */
.csr-card {
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 10px;
  transition: 0.3s ease;
  border: 1px solid rgba(255,255,255,0.08);
}

.csr-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.2);
}

/* ICON */
.csr-icon {
  width: 60px;
  height: 60px;
  /*margin: 0 auto 15px;*/
}

.csr-icon img {
  width: 40px;
  /*height: 100%;*/
  object-fit: contain;
}

/* TEXT */
.csr-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #fff;
}

.csr-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
}

/* ===============================
   TABLET
=============================== */
@media (max-width: 1024px) {

  .csr-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

  .csr-grid {
    grid-template-columns: 1fr;
  }

  .csr-card {
    padding: 20px;
  }

}

/* ===============================
   SMALL MOBILE
=============================== */
@media (max-width: 480px) {

  .csr-title {
    font-size: 14px;
  }

  .csr-text {
    font-size: 13px;
  }

}



/* ═══════════════════════════════════════════
   MILESTONES / TIMELINE
═══════════════════════════════════════════ */
.milestones { background: var(--off-white); }
.timeline {
  position: relative; margin-top: 60px;
  padding-left: 0;
}
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px; background: var(--gray-200);
  transform: translateX(-50%);
}
.timeline-items {
  display: flex; flex-direction: column; gap: 0;
}
.tl-item {
  display: grid; grid-template-columns: 1fr 80px 1fr;
  gap: 0; align-items: center; padding: 28px 0;
}
.tl-item:nth-child(odd) .tl-content { text-align: right; padding-right: 40px; }
.tl-item:nth-child(odd) .tl-empty { grid-column: 3; }
.tl-item:nth-child(even) .tl-content { grid-column: 3; padding-left: 40px; }
.tl-item:nth-child(even) .tl-empty { grid-column: 1; }
.tl-dot-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.tl-dot {
  width: 14px; height: 14px;
  background: var(--navy); border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--navy);
  position: relative; z-index: 1;
}
.tl-year {
  font-family: 'Cinzel', serif;
  font-size: 10px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px;
  margin-bottom: 6px;
}
.tl-title {
  font-size: 15px; font-weight: 600;
  color: var(--navy); margin-bottom: 4px;
}
.tl-desc { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   GALLERY
═══════════════════════════════════════════ */
.gallery { background: var(--white); }
.gallery-tabs {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin: 40px 0;
}
.gtab {
  padding: 8px 20px;
  font-size: 12.5px; font-weight: 500;
  border: 1px solid var(--gray-200);
  background: transparent; color: var(--text-mid);
  cursor: pointer; transition: all 0.2s;
  border-radius: var(--r);
}
.gtab:hover, .gtab.active {
  background: var(--navy); color: var(--white);
  border-color: var(--navy);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 4px;
}
.g-item {
  overflow: hidden; position: relative; cursor: pointer;
  background: var(--gray-200);
}
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 200px;
  transition: transform 0.5s; filter: brightness(0.88);
}
.g-item:hover img { transform: scale(1.06); filter: brightness(0.7); }
.g-item-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.7) 0%, transparent 50%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px; opacity: 0; transition: opacity 0.3s;
}
.g-item:hover .g-item-overlay { opacity: 1; }
.g-item-label {
  font-size: 12px; font-weight: 600; letter-spacing: 1px;
  color: var(--white); text-transform: uppercase;
}

/* ═══════════════════════════════════════════
   AWARDS & RECOGNITION
═══════════════════════════════════════════ */
.awards { background: var(--gray-100); }
.awards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 60px;
}
.award-card {
  background: var(--white); padding: 32px 28px;
  border: 1px solid var(--gray-200);
  display: flex; gap: 20px; align-items: flex-start;
  transition: all 0.3s;
}
.award-card:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.award-icon-wrap {
  width: 52px; height: 52px; flex-shrink: 0;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.award-year {
  font-family: 'Cinzel', serif;
  font-size: 9px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 4px;
}
.award-title {
  font-size: 14px; font-weight: 600; color: var(--navy);
  margin-bottom: 4px; line-height: 1.3;
}
.award-by { font-size: 12px; color: var(--text-muted); }

/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact { background: var(--white); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 80px; align-items: start;
}
.contact-info { }
.contact-detail {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid var(--gray-200);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--navy-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.contact-detail-label {
  font-size: 10px; letter-spacing: 2px;
  color: var(--text-muted); text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 14.5px; font-weight: 500; color: var(--navy);
  line-height: 1.5;
}
.contact-form-wrap {
  background: var(--off-white);
  padding: 48px 44px;
  border: 1px solid var(--gray-200);
}
.form-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 600;
  color: var(--navy); margin-bottom: 6px;
}
.form-sub { font-size: 13.5px; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-label {
  display: block; font-size: 11px;
  font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-mid);
  margin-bottom: 7px;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--gray-200);
  background: var(--white); color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px; border-radius: var(--r);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
}
.form-textarea { min-height: 110px; resize: vertical; }
.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--white);
  padding: 13px 32px; border-radius: var(--r);
  font-size: 13px; font-weight: 600;
  border: none; cursor: pointer; width: 100%;
  justify-content: center; letter-spacing: 0.3px;
  transition: all 0.25s;
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: var(--shadow-md); }

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  background: var(--navy);
  padding: 72px 0 0;
  border-top: 3px solid var(--gold);
}
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; padding-bottom: 56px;
}
.footer-brand-desc {
  font-size: 14px; line-height: 1.8; font-weight: 300;
  color: rgba(255,255,255,0.5); margin: 16px 0 28px;
}
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,0.5);
  transition: all 0.2s; cursor: pointer;
}
.social-btn:hover {
  background: var(--gold); border-color: var(--gold);
  color: var(--white);
}
.footer-col-title {
  font-family: 'Cinzel', serif;
  font-size: 9.5px; letter-spacing: 3px;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.5);
  transition: color 0.2s; display: flex; align-items: center; gap: 6px;
}
.footer-links a:hover { color: var(--white); }
.footer-links a::before { content: '—'; font-size: 10px; color: var(--gold); opacity: 0.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; font-style: italic;
  color: rgba(201,146,10,0.4);
}

/* ═══════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════ */
.fade-up {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

   .logo-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            width: 100%;
            max-width: 100%;
            padding: 40px;
			
        }

        .logo-card {
            background: var(--card-bg);
            border-radius: 12px;
            padding: 24px;
            text-align: center;
            position: relative;
            cursor: pointer;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: border-color 0.3s ease;
        }

/*         .logo-icon {
            font-size: 3rem;
            margin-bottom: 15px;
            display: block;
        } */
.logo-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;              /* مهم */
    margin: 0 auto 15px auto;    /* centers horizontally */
}		
		
		
		
		

        .logo-name {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 8px;
			color:#fff;
        }

        .logo-desc {
            font-size: 0.9rem;
            color: #94a3b8;
            opacity: 0;
            transform: translateY(10px);
            height: 0;
            transition: all 0.3s ease;
        }

        /* Hover State managed by GSAP, but basic fallback here */
        .logo-card:hover {
            border-color: var(--accent);
        }
		
		
		
		
		
		
		
		
		
		
/* =========================================
   GRID FIXES
========================================= */
.about-grid,
.vm-grid,
.chairman-grid {
  width: 100%;
}

/* =========================================
   TABLET (<=1024px)
========================================= */
@media (max-width: 1024px) {

  .container,
  .container-wide {
    padding: 0 20px;
  }

  /* HERO */
  .hero-img-panel {
    width: 50%;
  }

  .hero-title {
    font-size: 42px;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* CHAIRMAN */
  .chairman-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  /* VISION */
  .vm-grid {
    grid-template-columns: 1fr;
  }

  /* LOGO GRID */
  .logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================
   MOBILE (<=768px)
========================================= */
@media (max-width: 768px) {

  .container,
  .container-wide {
    padding: 0 16px;
  }

  section {
    padding: 60px 0;
  }

  /* NAVBAR */
  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    background: white;
    padding: 20px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  /* HERO */
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .hero-img-panel {
    position: relative;
    width: 100%;
    height: 240px;
  }

  .hero-content {
    padding: 40px 0;
    max-width: 100%;
  }

  .hero-title {
    font-size: 30px;
    line-height: 1.2;
  }

  .hero-sub {
    font-size: 14px;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    position: static;
    transform: none;
    flex-direction: column;
    margin-top: 20px;
  }

  .h-stat {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px;
  }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-img-accent {
    display: none;
  }

  /* CHAIRMAN */
  .chairman-grid {
    grid-template-columns: 1fr;
  }

  /* VISION */
  .vm-grid {
    grid-template-columns: 1fr;
  }

  /* LOGO GRID */
  .logo-grid {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  /* TICKER */
  .ticker-item span {
    font-size: 9px;
  }
}

/* =========================================
   SMALL MOBILE (<=480px)
========================================= */
@media (max-width: 480px) {

  .hero-title {
    font-size: 24px;
  }

  .display-md {
    font-size: 22px;
  }

  .body-lg {
    font-size: 14px;
  }

  .logo-grid {
    grid-template-columns: 1fr;
  }

  .btn-white,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
}
		
		
		
		/* ===============================
   TABLET
=============================== */
@media (max-width: 1024px) {

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

}

/* ===============================
   MOBILE
=============================== */
@media (max-width: 768px) {

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-brand-desc {
    text-align: center;
  }

}

/* ===============================
   SMALL MOBILE
=============================== */
@media (max-width: 480px) {

  .logo-img {
    max-width: 130px;
  }

  .footer-col-title {
    font-size: 13px;
  }

  .footer-links a {
    font-size: 12px;
  }

}
.sec-header-centered{float: left;
  width: 100%;
  margin-top: 5%;}
.view_more{
	
	background: var(--navy);
  color: var(--white) !important;
  padding: 9px 24px !important;
  font-weight: 500 !important;
  border-radius: var(--r);
  transition: background 0.2s, transform 0.2s !important;
}


/* =========================
   HERO SECTION
========================= */

.company-hero{
    position:relative;
    width:100%;
    height:500px;
    overflow:hidden;
}

.company-hero img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.65);
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-overlay h1{
    font-size:60px;
    margin-bottom:15px;
}

.hero-overlay p{
    max-width:900px;
    line-height:1.8;
    font-size:18px;
}

/* =========================
   MAIN CONTENT
========================= */


.company-wrapper{
    display:grid;
    grid-template-columns:1fr 380px;
    gap:40px;
}

/* =========================
   DESCRIPTION
========================= */

.company-content{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
}

.company-content h2{
    font-size:24px;
    margin-bottom:20px;
    color:#0b2f59;
}

.company-content p{
    font-size:17px;
    line-height:2;
    color:#555;
    margin-bottom:20px;
	text-align: justify;
}

.company-features{
    margin-top:30px;
}

.company-features li{
    list-style:none;
    margin-bottom:15px;
    font-size:17px;
    color:#333;
}

.company-features li i{
    color:#0b2f59;
    margin-right:10px;
}

/* =========================
   SIDEBAR
========================= */

.company-sidebar{
    background:#fff;
    padding:35px;
    border-radius:18px;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    height:fit-content;
    position:sticky;
    top:30px;
}

.company-sidebar h3{
    font-size:23px;
    margin-bottom:25px;
    color:#0b2f59;
}

.info-box{
    margin-bottom:22px;
}

.info-box span{
    display:block;
    font-size:14px;
    color:#888;
    margin-bottom:6px;
}

.info-box h4{
    font-size:18px;
    color:#222;
}

.visit-btn{
    width:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#0b2f59;
    color:#fff;
    padding:16px;
    border-radius:10px;
    font-size:18px;
    margin-top:30px;
    transition:0.3s;
}

.visit-btn:hover{
    background:#14498d;
}

/* =========================
   GALLERY
========================= */

.gallery-section{
    margin-top:70px;
}

.gallery-title{
    font-size:24px;
    margin-bottom:55px;
    color:#0b2f59;
    text-align:center;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:25px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    cursor:pointer;
}

.gallery-item img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:0.5s;
}

.gallery-item:hover img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.45);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    transition:0.3s;
}

.gallery-item:hover .gallery-overlay{
    opacity:1;
}

.gallery-overlay i{
    color:#fff;
    font-size:35px;
}

/* =========================
   MODAL
========================= */

.gallery-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,0.92);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:9999;
}

.gallery-modal img{
    width:90%;
    max-width:1000px;
    border-radius:15px;
}

.close-modal{
    position:absolute;
    top:30px;
    right:40px;
    font-size:45px;
    color:#fff;
    cursor:pointer;
}


.gallery-item video{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}


   






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

@media(max-width:991px){

    .company-wrapper{
        grid-template-columns:1fr;
    }

    .hero-overlay h1{
        font-size:42px;
    }

}

@media(max-width:600px){

    .company-hero{
        height:380px;
    }

    .hero-overlay h1{
        font-size:32px;
    }

    .hero-overlay p{
        font-size:15px;
    }

    .company-content{
        padding:25px;
    }

    .company-content h2{
        font-size:28px;
    }

    .gallery-title{
        font-size:32px;
    }

}



/* =========================
   COMPANY LOGO BOX
========================= */

.company-logo-wrapper{
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:30px;
}

.company-logo-box{
    width:200px;
    height:200px;
    background:#fff;
    border-radius:25px;
    padding:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    /*box-shadow:0 10px 30px rgba(0,0,0,0.08);
    border:1px solid #eee;*/
    overflow:hidden;
    transition:0.4s;
	float: left;
}

.company-logo-box:hover{
    transform:translateY(-5px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.company-logo-box img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

/* MOBILE */

@media(max-width:768px){

    .company-logo-box{
       width: 100%;
        height:180px;
        padding:15px;
    }

}