*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── CORPORATE PROFILE DOWNLOAD SECTION ── */
.corp-profile-section {
  background: var(--navy);
}
.corp-profile-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.corp-profile-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px 20px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.corp-profile-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EA9626, #e8c96d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.corp-profile-card:hover::before {
  transform: scaleX(1);
}
.corp-profile-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(234,150,38,0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}
.corp-profile-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(234,150,38,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  color: #EA9626;
  transition: all 0.4s ease;
}
.corp-profile-card:hover .corp-profile-icon {
  background: rgba(234,150,38,0.25);
  transform: scale(1.1);
}
.corp-profile-card h4 {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}
.corp-profile-card p {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  line-height: 1.5;
  text-align: center !important;
}
.corp-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EA9626;
  color: #fff;
  padding: 10px 24px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}
.corp-download-btn i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.corp-download-btn:hover {
  background: #d4851f;
  color: #fff;
  box-shadow: 0 6px 20px rgba(234,150,38,0.35);
}
.corp-download-btn:hover i {
  transform: translateY(2px);
}
@media (max-width: 1024px) {
  .corp-profile-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .corp-profile-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .corp-profile-grid {
    grid-template-columns: 1fr;
  }
}

/* ── PRELOADER ── */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  width: 80px;
  margin-bottom: 20px;
  animation: preloaderPulse 1.2s ease-in-out infinite;
}
.preloader-text {
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  animation: preloaderFill 1.5s ease-in-out forwards;
}
@keyframes preloaderPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.08); opacity: 0.8; }
}
@keyframes preloaderFill {
  0% { width: 0; }
  100% { width: 100%; }
}

:root {
  --navy: #13265C;
  --navy2: #13265C;
  --gold: #EA9626;
  --gold2: #e8c96d;
  --white: #ffffff;
  --light: #f5f7fa;
  --text: #0a1628;
  --muted: #2a4a7a;
  --orange: #e07b39;
  --green: #2e7d4f;
  --blue-accent: #1a4fa0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "EB Garamond", "Inter", serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
p {
    text-align: justify !important;
}
img {
  max-width: 100%;
}

/* ── TOP BAR ── */
.top-bar {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  padding: 7px 0;
}
.top-bar .inner {
max-width: 1256px;
    margin: 0 auto;
    padding: 0 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-left: 20px;
}
.top-bar a:hover {
  color: var(--gold);
}
.top-bar .left {
  font-size: 16px;
  letter-spacing: 0.5px;
}

/* ── HEADER ── */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.08);
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-inner {
  max-width: 1379px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 10px;
  width: 100%;
}
.logo {
     display: flex;
    align-items: center;
    text-decoration: none;
    flex-direction: column;
    width: 214px;
    /* margin-bottom: 13px; */
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width:1024px) {
  .logo{
    width:auto
  }
}

.logo-text {
  line-height: 1.1;
}
.logo-text .name {
  font-family: "EB Garamond", serif;
  font-size: 30px;
  font-weight: 800;
  color: white;
  display: block;
  letter-spacing: 4px;
}
.logo-text .sub {
  font-size: 18px;
  letter-spacing: 7px;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 4px;
  transition: color 0.2s;
  white-space: nowrap;
}
nav a:hover {
  color: var(--gold);
}

.btn-partner {
  background: var(--gold);
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 4px;
  font-weight: 700 !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s !important;
}
.btn-partner:hover {
  background: var(--gold2) !important;
  color: var(--navy) !important;
}

/* ── SEARCH TOGGLE ── */
.search-toggle {
  font-size: 16px;
  color: var(--navy);
  padding: 8px 8px !important;
  transition: color 0.2s;
}
.search-toggle:hover {
  color: var(--gold) !important;
}

/* ── SEARCH OVERLAY ── */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.92);
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 120px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.search-overlay.open {
  opacity: 1;
  visibility: visible;
}
.search-overlay-content {
  width: 100%;
  max-width: 700px;
  padding: 0 20px;
  position: relative;
}
.search-close {
  position: absolute;
  top: -60px;
  right: 20px;
  background: none;
  border: none;
  color: white;
  font-size: 28px;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.search-close:hover {
  opacity: 1;
}
.search-box {
  display: flex;
  align-items: center;
  background: white;
  border-radius: 8px;
  padding: 0 20px;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}
.search-box:focus-within {
  border-color: var(--gold);
}
.search-box-icon {
  font-size: 20px;
  color: var(--navy);
  opacity: 0.5;
  flex-shrink: 0;
}
.search-box input {
  flex: 1;
  padding: 18px 16px;
  border: none;
  outline: none;
  font-size: 18px;
  font-family: "EB Garamond", "Inter", serif;
  color: var(--navy);
  background: transparent;
}
.search-box input::placeholder {
  color: #6a8aac;
  opacity: 0.7;
}
.search-suggestions {
  margin-top: 24px;
  text-align: center;
}
.search-suggestion-title {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.search-suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.search-tag {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: "EB Garamond", "Inter", serif;
}
.search-tag:hover {
  background: var(--gold);
  color: var(--navy);
}
.search-results {
  margin-top: 20px;
  max-height: 350px;
  overflow-y: auto;
}
.search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,0.08);
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 8px;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  color: white;
}
.search-result-item:hover {
  background: rgba(255,255,255,0.15);
}
.search-result-icon {
  width: 36px;
  height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy);
  flex-shrink: 0;
}
.search-result-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 2px;
}
.search-result-text p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}
.no-results {
  text-align: center;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  padding: 30px;
}

/* ── HAMBURGER ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
  padding: 4px 8px;
  margin-left: auto;
  transition: color 0.2s;
}
.hamburger:hover {
  color: var(--gold);
}

/* ── MOBILE SIDEBAR ── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.6);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: none;
}
.mobile-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  z-index: 2001;
  box-shadow: -4px 0 20px rgba(10, 22, 40, 0.18);
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: block;
}
.mobile-sidebar.open {
  right: 0;
}
.mobile-close {
  background: none;
  border: none;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 8px;
  transition: color 0.2s;
}
.mobile-close:hover {
  color: var(--gold);
}
.mobile-sidebar-links {
  display: flex;
  flex-direction: column;
  padding: 60px 24px 24px;
}
.mobile-sidebar-links a {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #d4e0ef;
  transition: color 0.2s;
}
.mobile-sidebar-links a:hover {
  color: var(--gold);
}
.mobile-sidebar-links a:last-of-type {
  border-bottom: none;
}

/* ── MENU PILL OFF-CANVAS POPUP (White Theme) ── */
.menu-offcanvas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}
.menu-offcanvas-overlay.open {
  opacity: 1;
  visibility: visible;
}
.menu-offcanvas {
  position: fixed;
  top: 0;
  right: -534px;
  width: 534px;
  height: 100vh;
  z-index: 3001;
  transition: right 0.4s ease;
  overflow-y: auto;
  background: #ffffff;
  box-shadow: -4px 0 25px rgba(0,0,0,0.1);
}
.menu-offcanvas.open {
  right: 0;
}
.menu-offcanvas-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  background: #f0f0f0;
  border: none;
  color: #333;
  font-size: 16px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}
.menu-offcanvas-close:hover {
  background: #e0e0e0;
}
.menu-offcanvas-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 28px 28px 14px;
  border-bottom: 1px solid #e8e8e8;
}
.menu-offcanvas-logo {
  width: 32px;
  height: auto;
}
.menu-offcanvas-title {
  font-family: 'EB Garamond', serif;
  font-size: 13px;
  font-weight: 700;
  color: #999;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.menu-offcanvas-links {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  padding: 12px 28px 20px;
}
.mo-item {
  border: none;
}
.mo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  color: #111;
  text-decoration: none;
  font-size: 19px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s ease;
  background: transparent;
  letter-spacing: 0.2px;
    font-family: 'EB Garamond', serif;
}
.mo-link i {
  width: 22px;
  font-size: 16px;
  color: #333;
  opacity: 1;
  transition: all 0.2s ease;
  text-align: center;
}
.mo-link:hover {
  color: var(--gold);
  padding-left: 14px;
}
.mo-link:hover i {
  color: var(--gold);
}
/* Toggle button for items with submenu */
.mo-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 12px;
  background: transparent;
  border: none;
  color: #111;
  font-size: 19px;
  font-weight: 700;
    font-family: 'EB Garamond', serif;
  cursor: pointer;
  text-align: left;
  letter-spacing: 0.2px;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.mo-toggle:hover {
  color: var(--gold);
  padding-left: 14px;
}
.mo-caret {
  font-size: 12px;
  color: #111;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.mo-item.open .mo-caret {
  transform: rotate(180deg);
}
.mo-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 8px;
}
.mo-submenu.open,
.mo-item.open .mo-submenu {
  max-height: 200px;
}
.mo-submenu a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  color: #555;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.2s ease;
}
.mo-submenu a:hover {
  color: var(--gold);
  padding-left: 20px;
}
/* Contact section */
.menu-offcanvas-contact {
  padding: 16px 28px 10px;
  border-top: 1px solid #e8e8e8;
}
.mo-phone-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.mo-phone-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.mo-phone-list p {
  margin: 0;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}
.mo-city {
  font-weight: 500;
  color: #999 !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 11px !important;
  margin-top: 8px !important;
}
.mo-city:first-child { margin-top: 0 !important; }
.mo-number {
  font-weight: 700 !important;
  font-size: 15px !important;
  color: #111 !important;
}
.mo-social-title {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 18px 0 10px;
}
.mo-social-icons {
  display: flex;
  gap: 10px;
}
.mo-social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mo-social-icons a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}
.menu-offcanvas-footer {
  padding: 14px 28px 28px;
}
.mo-partner-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #111;
  color: #fff;
  padding: 14px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.25s ease;
}
.mo-partner-btn:hover {
  background: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
@media (max-width: 480px) {
  .menu-offcanvas {
    width: 100%;
    max-width: 100vw;
    right: -100%;
  }
}

/* ── MENU PILL BUTTON in Header ── */
.menu-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  border: none;
    padding: 11px 20px;
    border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.menu-pill:hover {
  background: #EA9626;
  color: #fff;
}
/* 2-line hamburger icon: first line longer, second line shorter */
.menu-pill-icon {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 16px;
  flex-shrink: 0;
  align-items: flex-start;
}
.mp-line {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.mp-line:first-child {
  width: 16px;
}
.mp-line:last-child {
  width: 10px;
}
.menu-pill:hover .mp-line {
  background: #fff;
}

/* ── MOBILE ACCORDION ── */
.mob-accordion {
  display: flex;
  flex-direction: column;
}
.mob-accordion-header {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid #d4e0ef;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.mob-accordion-header:hover {
  color: var(--gold);
}
.mob-accordion-header i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.mob-accordion-header.open i {
  transform: rotate(180deg);
}
.mob-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 0 0 12px;
}
.mob-accordion-body.open {
  max-height: 300px;
  padding: 8px 0 8px 12px;
}
.mob-accordion-body a {
  font-size: 14px !important;
  padding: 10px 0 !important;
  border-bottom: 1px solid #e8eef5 !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.mob-accordion-body a i {
  font-size: 16px;
  color: var(--gold);
  width: 16px;
}
.mob-accordion-body a:last-child {
  border-bottom: none !important;
}

/* ── HERO ── */
.hero {
  background-image: url("images/KV Banner Image.png");
  background-size: cover;
  background-position: center;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  position: relative;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px 80px 80px;
  position: relative;
  z-index: 2;
}
.hero-left h1 {
  font-family: "EB Garamond", serif;
  font-size: clamp(28px, 4vw, 54px);
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 20px;
}
.hero-left h1 span.hero-line {
  color: var(--white);
}
.hero-left p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
  line-height: 1.7;
  max-width: 400px;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: white;
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover {
  background: var(--gold2);
  color: white;
  transform: translateY(-2px);
}
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, transform 0.2s;
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-right {
  display: grid;
  grid-template-rows: 2fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  overflow: hidden;
}
.hero-img {
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}
.hero-img:hover {
  transform: scale(1.03);
}
.hero-img.main {
  grid-row: 1 / 2;
  grid-column: 1 / 3;
  background-image: url("https://images.unsplash.com/photo-1486325212027-8081e485255e?w=900");
  min-height: 300px;
}
.hero-img.sm1 {
  background-image: url("https://images.unsplash.com/photo-1677442135703-1787eea5ce01?w=400");
}
.hero-img.sm2 {
  background-image: url("https://images.unsplash.com/photo-1523050854058-8df90110c9f1?w=400");
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.stat-icon {
  font-size: 28px;
  color: var(--gold);
  flex-shrink: 0;
}
.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 2px;
}

/* ── SECTION COMMON ── */
section {
  padding: 80px 0;
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: "EB Garamond", serif;
  font-size: clamp(24px, 3vw, 40px);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0;
}
.section-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
}
.section-center {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
flex-direction: column;
}
.section-desc {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}

/* ── INTERACTIVE ORGANIZATION STRUCTURE ── */
.org-section {
  background: var(--white);
  padding: 60px 0;
}
.org-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  max-width: 700px;
  margin: 48px auto 0;
}
.org-node {
  width: 100%;
  max-width: 380px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.org-node:hover {
  transform: translateY(-3px);
}
.org-node-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.org-node-inner {
  background: var(--light);
  border: 1.5px solid #d4e0ef;
}
.org-node:hover .org-node-inner {
  border-color: var(--gold);
  box-shadow: 0 4px 16px rgba(10,22,40,0.1);
}
.org-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.org-node:hover .org-icon {
  transform: scale(1.1);
}
.org-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  display: block;
  margin-bottom: 2px;
}
.org-sub {
  font-size: 16px;
  color: var(--muted);
}
/* Node colors */
.org-board .org-icon { background: #1a4fa015; color: #1a4fa0; }
.org-board:hover .org-node-inner { border-left: 3px solid #1a4fa0; }
.org-chairman .org-icon { background: #c0392b15; color: #c0392b; }
.org-chairman:hover .org-node-inner { border-left: 3px solid #c0392b; }
.org-ceo .org-icon { background: #1a4fa015; color: #1a4fa0; }
.org-ceo:hover .org-node-inner { border-left: 3px solid #1a4fa0; }
.org-coo .org-icon { background: #2e7d4f15; color: #2e7d4f; }
.org-coo:hover .org-node-inner { border-left: 3px solid #2e7d4f; }
.org-cfo .org-icon { background: #4a3a8a15; color: #4a3a8a; }
.org-cfo:hover .org-node-inner { border-left: 3px solid #4a3a8a; }
.org-services .org-icon { background: #e07b3915; color: #e07b39; }
.org-services:hover .org-node-inner { border-left: 3px solid #e07b39; }
.org-units .org-icon { background: #1a4fa015; color: #1a4fa0; }
.org-units:hover .org-node-inner { border-left: 3px solid #1a4fa0; }
.org-node.active .org-node-inner {
  background: var(--navy);
  border-color: var(--navy);
}
.org-node.active .org-title,
.org-node.active .org-sub { color: white; }
.org-node.active .org-icon { background: rgba(255,255,255,0.15); color: var(--gold); }
.org-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4px 0;
}
.org-line {
  width: 2px;
  height: 18px;
  background: var(--gold);
}
.org-arrow {
  color: var(--gold);
  font-size: 10px;
  margin-top: -2px;
}
.org-row {
  display: flex;
  gap: 16px;
  width: 100%;
  max-width: 500px;
  justify-content: center;
}
.org-row .org-node {
  flex: 1;
  max-width: 240px;
}
.org-info-panel {
  margin-top: 32px;
  text-align: center;
  background: var(--light);
  border-radius: 10px;
  padding: 28px 24px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  border-left: 3px solid var(--gold);
  min-height: 100px;
  transition: all 0.3s ease;
}
.org-info-content h4 {
  font-family: "EB Garamond", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.org-info-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.org-info-content span {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}

/* ── WHO WE ARE ── */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.who-img-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.who-img-wrap img {
  width: 100%;
  display: block;
  border-radius: 8px;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.play-btn:hover {
  background: var(--gold);
}
.play-btn i {
  color: white;
  font-size: 20px;
  margin-left: 4px;
}

.who-mid {
  padding: 0 20px;
}
.who-mid .section-label {
  color: var(--gold);
}
.who-mid h2 {
 
  font-size: 32px;
  color: var(--navy);
  margin-bottom: 14px;
}
.who-mid p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 28px;
}

.mvv-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.mvv-icon {
  width: 38px;
  height: 38px;
  background: #ea96261a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 16px;
}
.mvv-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 11px;
}
.mvv-item p {
  font-size: 16px;
  color: var(--muted);
}
.values-list {
  font-size: 16px;
  color: var(--muted);
}

/* ── OUR BUSINESSES ── */
.businesses {
  background: var(--light);
}
.biz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.biz-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 22, 40, 0.07);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.biz-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.13);
}
.biz-img {
  height: 140px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.biz-badge {
  position: absolute;
  bottom: -26px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--white);
}
.biz-body {
  padding: 36px 20px 24px;
}
.biz-body h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
  text-align: center;
}
.biz-body .biz-sub {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 14px;
  text-align: center;
}
.biz-features {
  list-style: none;
  margin-bottom: 18px;
}
.biz-features li {
  font-size: 16px;
  color: var(--navy);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.biz-features li i {
  font-size: 9px;
  color: var(--gold);
}
.biz-link {
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
  justify-content: center;
  width: 100%;
}
.biz-link:hover {
  gap: 10px;
}

/* card colors */
.biz-card.blue .biz-badge { background: var(--blue-accent); }
.biz-card.blue .biz-body h3 { color: var(--blue-accent); }
.biz-card.blue .biz-link { color: var(--blue-accent); }
.biz-card.green .biz-badge { background: var(--green); }
.biz-card.green .biz-body h3 { color: var(--green); }
.biz-card.green .biz-link { color: var(--green); }
.biz-card.purple .biz-badge { background: #4a3a8a; }
.biz-card.purple .biz-body h3 { color: #4a3a8a; }
.biz-card.purple .biz-link { color: #4a3a8a; }
.biz-card.orange .biz-badge { background: var(--orange); }
.biz-card.orange .biz-body h3 { color: var(--orange); }
.biz-card.orange .biz-link { color: var(--orange); }

/* ── CORPORATE STRUCTURE (icon-based, org-chart style) ── */
.corp-tree-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.ct-node {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--light);
  color: var(--navy);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  width: 100%;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
}
.ct-node:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(10,22,40,0.1);
}
.ct-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.ct-node:hover .ct-icon {
  transform: scale(1.12);
}
.ct-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
}
.ct-connector {
  width: 2px;
  height: 18px;
  background: var(--gold);
  margin: 0 auto;
}
.ct-row {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}
.ct-connector-h {
  height: 2px;
  width: 30px;
  background: var(--gold);
  align-self: center;
}
/* Node color themes */
.ct-board .ct-icon { background: #1a4fa020; color: #1a4fa0; }
.ct-board { border-left: 3px solid #1a4fa0; }
.ct-chairman .ct-icon { background: #c0392b20; color: #c0392b; }
.ct-chairman { border-left: 3px solid #c0392b; }
.ct-ceo .ct-icon { background: #1a4fa020; color: #1a4fa0; }
.ct-ceo { border-left: 3px solid #1a4fa0; }
.ct-coo .ct-icon { background: #24542220; color: #245422; }
.ct-coo { border-left: 3px solid #245422; }
.ct-cfo .ct-icon { background: #A0310720; color: #A03107; }
.ct-cfo { border-left: 3px solid #A03107; }
.ct-services .ct-icon { background: var(--navy); color: var(--gold); }
.ct-services { background: var(--navy); color: white; border-left: 3px solid var(--gold); }
.ct-services .ct-label { color: white; }
.ct-units .ct-icon { background: var(--navy); color: var(--gold); }
.ct-units { background: var(--navy); color: white; border-left: 3px solid var(--gold); }
.ct-units .ct-label { color: white; }
.ct-companies .ct-icon { background: #f0f5fb; color: var(--navy); }
.ct-companies { background: #f0f5fb; border: 1px solid var(--navy); border-left: 3px solid var(--gold); }

/* ── CORPORATE + LEADERSHIP ── */
.cl-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: start;
}
.corp-box {
  background: var(--light);
  border-radius: 10px;
  padding: 30px;
}
.corp-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-align: center;
}
.corp-tree {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.corp-node {
  background: #dde8f5;
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  width: 100%;
  position: relative;
}
.corp-connector {
  width: 1px;
  height: 20px;
  background: var(--gold);
  margin: 0 auto;
}
.corp-row {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-between;
}
.corp-node.highlight {
  background: var(--gold);
  color: var(--navy);
}
.corp-node.dark {
  background: var(--navy2);
  width: 100%;
  color: var(--white);
}
.btn-gov {
  margin-top: 20px;
  width: 100%;
  background: var(--navy);
  border: 1.5px solid var(--navy2);
  color: white;
  padding: 10px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.2s;
}
.btn-gov:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.leadership-box {
  background: var(--white);
  border: 1px solid #d4e0ef;
  border-radius: 10px;
  padding: 30px;
      margin-top: 57px;
}
.leadership-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 10px;
}
.leadership-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.view-all {
  font-size: 16px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── LEADERSHIP CAROUSEL ── */
.leaders-carousel {
  overflow: hidden;
  width: 100%;
}
.leaders-row {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.leader-card {
  min-width: calc((100% - 32px) / 3);
  flex-shrink: 0;
  text-align: center;
}
.leader-photo {
  width: 100%;
  height: 300px;
  border-radius: 8px;
  margin: 0 auto 10px;
  background-size: cover;
  background-position: center top;
  border: 3px solid #dde8f5;
  transition: transform 0.3s ease;
}
.leader-card:hover .leader-photo {
  transform: scale(1.03);
}
.leader-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.leader-title {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 4px;
}
.leader-desc {
  font-size: 10px;
  color: var(--muted);
  line-height: 1.4;
}
.leader-card.board .leader-photo {
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* ── LEADERSHIP DOTS ── */
.leaders-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.leaders-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #b8cce0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.leaders-dots .dot.active {
  background: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(234, 150, 38, 0.45);
}
.leaders-dots .dot:hover {
  background: var(--gold2);
  transform: scale(1.2);
}


/* ── WHY US ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 2fr;
  gap: 20px;
  align-items: stretch;
}
.why-card {
  background: var(--light);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
}
.why-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  justify-content: center;
}
.why-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.why-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}
.news-highlight {
  background: var(--navy);
  border-radius: 10px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-hl-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.news-hl-title {
 
  font-size: 18px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
}
.news-hl-date {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
}
.news-hl-img {
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  margin-bottom: 16px;
  background-image: url("images/8.png");
  width: 100%;
  min-height: 100px;
}
.btn-read {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0;
}

/* ── GROWTH JOURNEY ── */
.journey {
  background: var(--navy2);
  padding: 60px 0;
}
.journey .section-title {
  color: var(--white);
}
.timeline {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  margin-top: 50px;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
}
.tl-item {
  flex: 1;
  text-align: center;
  position: relative;
  padding-top: 50px;
}
.tl-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy2);
  border: 1px solid rgba(198, 131, 36, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  transition: background 0.3s;
}
.tl-item:hover .tl-dot {
  background: var(--gold);
  color: var(--navy);
}
.tl-year {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 6px;
}
.tl-label {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.4;
}

.journey-cta {
  text-align: right;
  margin-top: 40px;
}
.btn-journey {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.btn-journey:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

/* ── INVESTORS ── */
.investors-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
}
.inv-left h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.inv-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-become {
  background: var(--gold);
  color: white;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, color 0.2s;
}
.btn-become:hover {
  background: var(--gold2);
  color: var(--navy);
}

.inv-mid {
  background: var(--navy);
  border-radius: 10px;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 16px;
  padding-right: 16px;
}
.inv-features {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.inv-feat {
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  padding-right: 23px;
}
.inv-feat-icon {
  font-size: 40px;
  color: white;
  margin-bottom: 8px;
  display: flex;
  justify-content: center;
}
.inv-feat-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.inv-feat-desc {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.inv-right h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.inv-right p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}
.newsletter {
  display: flex;
  border: 1.5px solid #b8cce0;
  border-radius: 4px;
  overflow: hidden;
}
.newsletter input {
  flex: 1;
  min-width: 0;
  padding: 10px 14px;
  font-size: 16px;
  border: none;
  outline: none;
  color: var(--navy);
}
.newsletter input::placeholder {
  color: #6a8aac;
}
.newsletter button {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s;
}
.newsletter button:hover {
  background: var(--gold);
  color: var(--navy);
}

/* ── LATEST NEWS ── */
.news-section {
  background: var(--light);
}
.news-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.news-col h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--navy);
  margin-bottom: 4px;
}
.news-col-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  flex-wrap: wrap;
  gap: 8px;
}
.view-all-link {
  font-size: 16px;
  color: var(--navy);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}
.view-all-link:hover {
  color: var(--gold);
}

.news-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.news-thumb {
  width: 70px;
  height: 55px;
  border-radius: 6px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.news-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 4px;
}
.news-item-date {
  font-size: 10px;
  color: var(--muted);
}

.careers-box {
  text-align: center;
}
.careers-photo {
  width: 100%;
  height: 160px;
  border-radius: 8px;
  background-size: cover;
  background-position: top;
  margin-bottom: 14px;
  background-image: url("images/10.png");
}
.careers-box h4 {
  font-family: 'Inter';
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  text-transform: lowercase;
  text-align: justify;
}
.careers-box p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}
.careers-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
}
.tag {
  font-size: 10px;
  color: var(--navy);
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
  background: #dde8f5;
}
.tag i {
  color: var(--navy);
  margin-right: 4px;
}

.office-card {
  display: flex;
  gap: 16px;
}
.office-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.office-info {
  display: flex;
  gap: 10px;
  margin-bottom: 21px;
  font-size: 16px;
  color: var(--muted);
  align-items: flex-start;
}
.office-info i {
  color: var(--navy);
  margin-top: 2px;
  font-size: 15px;
  flex-shrink: 0;
}
.office-img {
  width: 100%;
  height: 196px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  background-image: url("images/11.png");
}
.news-col {
  color: var(--navy);
  text-transform: uppercase;
  font-size: 16px;
}
.btn-directions {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 0;
  transition: color 0.2s;
}
.btn-directions:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════
   PREMIUM FOOTER (Section 30)
   ════════════════════════════════════════ */
footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
}
.footer-main {
  padding: 26px 0 20px;
  background:var(--navy);
}

/* Top Row: Brand + Contact side by side */
.footer-top-row {
  display: grid;
  grid-template-columns: 2.2fr 1fr;
  gap: 50px;
  align-items: start;
}
.footer-logo-area {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.footer-logo-text {
  line-height: 1.2;
}
.footer-gold-line {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 4px 0;
}
.footer-company-desc {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  margin-top: 4px;
}
.footer-social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}
.footer-social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}
.footer-social-links a:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

/* Contact area */
.footer-contact-area {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.footer-contact-row i {
  width: 18px;
  color: var(--gold);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}
.footer-contact-row strong {
  display: block;
  font-size: 16px;
  color: white;
  font-weight: 700;
  margin-bottom: 2px;
}
.footer-contact-row span {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}

/* Divider line */
.footer-divider-line {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 32px 0;
}

/* Link columns grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
}
.footer-links-col {
  text-align: left;
}
.footer-links-col h5 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-links-col ul {
  list-style: none;
}
.footer-links-col ul li {
  margin-bottom: 6px;
}
.footer-links-col ul li a {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

/* QR Code box */
.footer-qr-box {
  text-align: center;
  padding: 16px 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.3s ease;
}
.footer-qr-box:hover {
  border-color: var(--gold);
  background: rgba(255,255,255,0.08);
}
.footer-qr-code-icon {
  /* width: 70px;
  height: 70px; */
  /* background: white; */
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 32px;
  color: var(--navy);
}
.footer-qr-box p {
  font-size: 10px;
  color: rgba(255,255,255,0.6);
  text-align: center !important;
  line-height: 1.4;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  background: var(--navy);
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}
.footer-bottom-row span {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
}
.footer-bottom-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-bottom-row {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .footer-links-grid {
    grid-template-columns: 1fr;
  }
}

/* ── ANIMATIONS ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }

/* ════════════════════════════════════════════
   ── RESPONSIVE BREAKPOINTS ──
   ════════════════════════════════════════════ */

/* ── Large tablets / small laptops ── */
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 16px;
            gap: 23px;
  }
  nav a {
    font-size: 16px;
    padding: 8px 8px;
  }
  .biz-grid {
    gap: 18px;
  }
}

/* ── Tablets ── */
@media (max-width: 1024px) {
  section {
    padding: 60px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-right {
    display: none;
  }
  .hero-left {
    padding: 60px 40px;
    text-align: center;
    align-items: center;
  }
  .hero-left p {
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .biz-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cl-grid {
    flex-wrap: wrap;
    display: flex;
  }
  .corp-node {
    width: 100% !important;
  }
  .leadership-box {
    width: 100% !important;
  }
  .leader-photo {
    max-width: 100% !important;
  }
  .corp-box {
    width: 100%;
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-highlight {
    grid-column: 1 / -1;
  }
  /* .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
  } */
  .footer-brand {
    grid-column: 1 / -1;
  }
  .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .who-mid {
    grid-column: 1 / -1;
    padding: 0;
    order: -1;
  }
  .investors-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .inv-feat {
    padding-right: 16px;
  }
  .news-cols {
    grid-template-columns: 1fr 1fr;
  }
  .news-cols > div:last-child {
    grid-column: 1 / -1;
  }
  .leader-card {
    min-width: calc((100% - 16px) / 2);
  }
}

/* ── Small tablets / large phones ── */
@media (max-width: 999px) {
  .top-bar .inner {
    flex-direction: column;
    gap: 4px;
    padding: 6px 16px;
    text-align: center;
  }
.top-bar a {
  color: rgba(255, 255, 255, 0.8);
}
.employee-login-link i {
  margin-right: 4px;
}
  header {
    height: auto;
  }
  .logo-text .name {
    font-size: 22px;
  }
  .logo-icon {
    width: 66px;
    height: 34px;
  }
  .logo-text .sub {
    font-size: 7px;
  }
  .header-inner {
    height: 97px;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: block;
    margin-top: 6px;
  }
  .mobiletoggle{
           display: flex !important;
  }
  .mobile-overlay,
  .mobile-sidebar {
    display: block;
  }
  .stats-inner {
    gap: 24px;
    justify-content: center;
  }
  .stat-item {
    width: calc(50% - 12px);
    justify-content: center;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-mid {
    order: 0;
  }
  .biz-grid {
    grid-template-columns: 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-cols {
    grid-template-columns: 1fr;
  }
  .news-cols > div:last-child {
    grid-column: auto;
  }
  /* .footer-grid {
    grid-template-columns: 1fr 1fr;
    text-align: center;
  } */
  .office-card {
    flex-direction: column;
  }
  .journey-cta {
    text-align: center;
  }
}

/* ── Mobile phones ── */
@media (max-width: 768px) {
  .header-inner {
    height: 97px;
  }
  nav {
    display: none;
  }
  .hamburger {
    display: block;
  }
  .mobile-overlay,
  .mobile-sidebar {
    display: block;
  }
  .who-grid {
    grid-template-columns: 1fr;
  }
  .biz-grid {
    grid-template-columns: 1fr;
  }
  .investors-grid {
    grid-template-columns: 1fr;
  }
  .news-cols {
    grid-template-columns: 1fr;
  }
  .leaders-row {
    gap: 12px;
  }
  .leader-card {
    min-width: 100%;
  }
  .leader-photo {
    width: 100%;
    max-width: 100%;
    height: 260px;
  }
  .hero-left {
    padding: 50px 24px;
  }
  .stats-inner {
    gap: 24px;
  }
  .timeline {
    flex-direction: column;
  }
  .timeline::before {
    display: none;
  }
  .tl-item {
    padding-top: 0;
    padding-left: 60px;
    text-align: left;
    margin-bottom: 20px;
  }
  .tl-dot {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .inv-features {
    gap: 24px;
  }
  .inv-feat {
    border-right: none;
    padding-right: 0;
  }
  /* .footer-grid {
         align-items: baseline;
        display: flex;
        flex-direction: column;
  } */
  .footer-bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  section {
    padding: 48px 0;
  }
  .logo-text .name {
    font-size: 22px;
    letter-spacing: 2px;
  }
  .logo-text .sub {
           letter-spacing: 6px;
  }
  .hero-left h1 {
    font-size: 26px;
    letter-spacing: 1px;
  }
  .hero-left p {
    font-size: 16px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons a {
    justify-content: center;
    width: 100%;
  }
  .stat-item {
    width: 100%;
    justify-content: flex-start;
  }
  .biz-body {
    padding: 36px 16px 20px;
  }
  .corp-row {
    flex-direction: column;
    gap: 8px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .news-thumb {
    width: 60px;
    height: 48px;
  }
  .newsletter {
    flex-direction: column;
    border: none;
    gap: 8px;
  }
  .latest_update {
    flex-wrap: wrap !important;
  }
  .newsletter input {
    border: 1.5px solid #b8cce0;
    border-radius: 4px;
    color: var(--navy);
  }
  .newsletter button {
    border-radius: 4px;
    justify-content: center;
    display: flex;
  }
  .top-bar .left {
    display: none;
  }
}

/* ════════════════════════════════════════════
   ── NEW PREMIUM SECTION STYLES ──
   ════════════════════════════════════════════ */

/* ── PAGE HERO (sub-pages) ── */
.page-hero {
  background-size: cover;
  background-position: center;
}

/* ── HERO SLIDESHOW ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}
.hero-slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.85) 0%, rgba(10,22,40,0.6) 100%);
  z-index: 1;
}
.hero-badge {
  display: inline-block;
  background: rgba(234,150,38,0.15);
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
  padding: 6px 16px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-weight: 600;
  width:max-content;
}
.hero-strip {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.hero-strip span {
  color: rgba(255,255,255,0.6);
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-strip span i {
  color: var(--gold);
  font-size: 18px;
}

/* ── STATS SECTION (animated counters) ── */
.stats-section {
  background: var(--navy); 
  padding: 23px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.stats-grid .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  width: 100%;
}
.stats-grid .stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.stats-grid .stat-icon {
  width: 50px;
  height: 50px;
  background: rgb(255 255 255 / 9%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
}
.stats-grid .stat-num {
  font-size: 30px;
  font-weight: 800;
  color: white;
  line-height: 1;
}
.stats-grid .stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ── VISION MISSION QUALITY POLICY ── */
.vision-mission-section {
  background: var(--white);
}
.vmq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.vmq-card {
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.vmq-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.1);
}
.vmq-card.vision-card {
  background: linear-gradient(135deg, #0a1628, #0d1f3c);
  color: var(--white);
}
.vmq-card.mission-card {
  background: linear-gradient(135deg, #1a4fa0, #0d1f3c);
  color: var(--white);
}
.vmq-card.motto-card {
  background: linear-gradient(135deg, #EA9626, #c67d1a);
  color: var(--white);
}
.vmq-icon {
  font-size: 40px;
  margin-bottom: 16px;
  opacity: 0.9;
}
.vmq-card h3 {
 
  font-size: 20px;
  margin-bottom: 14px;
  color: inherit;
}
.vmq-card p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  text-align: center;
}
.vmq-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
  font-style: italic;
}

/* ── QUALITY POLICY HOMEPAGE ── */
.quality-policy {
  margin-top: 40px;
  background: var(--light);
  border-radius: 12px;
  padding: 36px;
  border-left: 4px solid var(--gold);
}
.quality-badge {
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
}
.quality-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.quality-icon {
  font-size: 48px;
  color: var(--gold);
  flex-shrink: 0;
}
.quality-content h3 {
 
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.quality-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.quality-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}
.quality-tags span {
  font-size: 16px;
  color: var(--navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.quality-tags span i {
  color: var(--gold);
  font-size: 16px;
}

/* ── BUSINESS ECOSYSTEM ── */
.ecosystem-section {
  background: var(--light);
}
.ecosystem {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding: 60px 0 40px;
  margin-top: 40px; */
}
.eco-center {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  /* z-index: 1; */
}
.eco-center img {
  width: 70px;
  margin-bottom: 10px;
}
.eco-center h3 {
 
  font-size: 22px;
  color: var(--navy);
}
.eco-nodes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.eco-node {
  flex: 1;
  min-width: 130px;
  max-width: 170px;
  text-align: center;
  padding: 24px 11px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(10,22,40,0.06);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}
.eco-node:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.12);
}
.eco-node:hover .eco-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.eco-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.eco-node-1 .eco-icon { color: #1a4fa0; }
.eco-node-2 .eco-icon { color: #4a3a8a; }
.eco-node-3 .eco-icon { color: #e07b39; }
.eco-node-4 .eco-icon { color: #2e7d4f; }
.eco-node-5 .eco-icon { color: #0a1628; }
.eco-node-6 .eco-icon { color: #c0392b; }
.eco-node span {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
}
.eco-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: -31%;
  transform: translateX(-50%) translateY(8px);
  background: var(--navy);
  color: white;
  padding: 16px;
  border-radius: 8px;
  width: 220px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  box-shadow: 0 8px 24px rgba(10,22,40,0.2);
}
.eco-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: var(--navy);
}
.eco-tooltip h4 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 6px;
}
.eco-tooltip p {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* ── CORPORATE VIDEO SECTION ── */
.corp-video-section {
  background: var(--navy);
  padding: 80px 0;
}
.corp-video-section .section-title {
  color: var(--white);
}
.corp-video-section .section-divider {
  background: var(--gold);
}
.corp-video-section .section-desc {
  color: rgba(255,255,255,0.6);
}
.corp-video-wrapper {
  max-width: 800px;
  margin: 48px auto 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
}
.corp-video-thumb {
  position: relative;
  cursor: pointer;
  width: 100%;
}
.corp-video-thumb img {
  width: 100%;
  display: block;
  max-height: 420px;
  object-fit: cover;
}
.corp-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7), rgba(10,22,40,0.3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: background 0.3s ease;
}
.corp-video-thumb:hover .corp-video-overlay {
  background: linear-gradient(135deg, rgba(10,22,40,0.5), rgba(10,22,40,0.2));
}
.corp-play-btn {
  width: 80px;
  height: 80px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: white;
  box-shadow: 0 4px 20px rgba(234,150,38,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.corp-video-thumb:hover .corp-play-btn {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(234,150,38,0.7);
}
.corp-watch-text {
  font-size: 16px;
  font-weight: 700;
  color: white;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.corp-duration {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  background: rgba(10,22,40,0.6);
  padding: 4px 14px;
  border-radius: 20px;
}
.corp-video-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 18px;
}
.corp-feature {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  padding: 10px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.corp-feature:last-child {
  border-right: none;
}
.corp-feature i {
  color: var(--gold);
  font-size: 16px;
}

/* ── VIDEO MODAL ── */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.95);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.video-modal.open {
  opacity: 1;
  visibility: visible;
}
.video-modal-content {
  width: 100%;
  max-width: 900px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
}
.video-modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 32px;
  cursor: pointer;
  opacity: 0.8;
  z-index: 10;
  transition: opacity 0.2s;
}
.video-modal-close:hover {
  opacity: 1;
}
.video-modal-embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
}
.video-modal-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), #0d2a5c);
}
.placeholder-content {
  text-align: center;
  color: white;
}
.placeholder-content i {
  font-size: 64px;
  color: var(--gold);
  margin-bottom: 16px;
}
.placeholder-content h3 {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.placeholder-content p {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.placeholder-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 700;
}

/* ── CHAIRMAN MESSAGE SECTION (PREMIUM) ── */
.chairman-message-section {
  background: var(--white);
  padding: 80px 0;
}
.chairman-premium {
  display: grid;
  /* grid-template-columns: 0.9fr 1.1fr; */
  gap: 50px;
  align-items: center;
}
.chairman-portrait {
  text-align: center;
}
.chairman-portrait-img {
  position: relative;
  display: inline-block;
}
.chairman-portrait-img img {
  width: 100%;
  max-width: 320px;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(10,22,40,0.18);
  display: block;
  border: 4px solid var(--white);
  outline: 2px solid var(--gold);
}
.chairman-portrait-badge {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 22px;
  border-radius: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(234,150,38,0.3);
}
.chairman-content {
  padding: 20px 0;
}
.chairman-quote-mark {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
  opacity: 0.5;
}
.chairman-short-msg {
  font-family: "EB Garamond", serif;
  font-size: clamp(17px, 2vw, 22px);
  color: var(--navy);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 500;
}
.chairman-name-title {
  margin-bottom: 20px;
}
.chairman-name-title h3 {
  font-family: "EB Garamond", serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.chairman-name-title span {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
}
.chairman-actions {
  margin-bottom: 24px;
}
.chairman-legacy {
  display: flex;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid #d4e0ef;
}
.legacy-item {
  text-align: center;
}
.legacy-num {
  display: block;
  font-family: "EB Garamond", serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.legacy-label {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  display: block;
}

/* ── PLAY BTN LARGE (for chairman portrait) ── */
.play-btn-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  transition: transform 0.3s ease;
}
.play-btn-large:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ── BRAND VALUES ── */
.values-section {
  background: var(--light);
}
.values-animation {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.value-item {
  text-align: center;
  padding: 30px 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
  transition: transform 0.3s ease;
}
.value-item:hover {
  transform: translateY(-4px);
}
.value-icon {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--gold);
}
.value-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.value-bar {
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border-radius: 2px;
  width: 0;
  transition: width 1s ease;
}
.value-item.visible .value-bar {
  width: 60%;
}

/* ── WHY PREMIUM GRID ── */
.why-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-premium-card {
  background: var(--light);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-premium-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.08);
}
.why-premium-icon {
  width: 56px;
  height: 56px;
  background: #ea96262b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: var(--gold);
}
.why-premium-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-premium-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  background: var(--white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.testimonial-card {
  background: var(--light);
  border-radius: 12px;
  padding: 30px 24px;
  position: relative;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 14px;
}
.testimonial-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #d4e0ef;
  padding-top: 16px;
}
.test-auth-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}
.test-auth-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.test-auth-title {
  font-size: 10px;
  color: var(--muted);
}

/* ── CSR SECTION ── */
.csr-section {
  background: var(--white);
}
.csr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.csr-card {
  background: var(--light);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: transform 0.3s ease;
}
.csr-card:hover {
  transform: translateY(-4px);
}
.csr-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.csr-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.csr-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.csr-cta {
  text-align: center;
  margin-top: 40px;
}
.biz-cta {
  text-align: center;
  margin-top: 32px;
}

/* ── AWARDS SECTION ── */
.awards-section {
  background: var(--light);
  overflow: hidden;
}
.awards-scroll {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}
.awards-track {
  display: flex;
  gap: 30px;
  animation: scrollAwards 20s linear infinite;
  width: max-content;
}
@keyframes scrollAwards {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.award-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 14px 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(10,22,40,0.06);
  white-space: nowrap;
}
.award-item i {
  font-size: 22px;
  color: var(--gold);
}
.award-item span {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

/* ── PARTNER SECTION ── */
.partner-section {
  background: var(--white);
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.partner-left h2 {
 
  font-size: clamp(26px, 3vw, 36px);
  color: var(--navy);
  margin-bottom: 14px;
}
.partner-left p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.partner-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.partner-tag {
  background: var(--light);
  border: 1px solid #d4e0ef;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 6px;
}
.partner-tag i {
  color: var(--gold);
}
.partner-form {
  background: var(--light);
  border-radius: 12px;
  padding: 32px;
}
.partner-form h3 {
 
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
      margin-top: 10px;
}
.form-row-three {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
      margin-bottom: 22px;
    margin-top: 0;
}
.form-row-three input,
.form-row-three select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #d4e0ef;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  color: var(--navy);
  font-family: 'Inter', sans-serif;
  background: white;
  transition: border-color 0.2s;
}
.form-row-three input:focus,
.form-row-three select:focus {
  border-color: var(--gold);
}
.form-row-three input::placeholder {
  color: #6a8aac;
}
.form-row input,
.form-row select,
.partner-form input,
.partner-form textarea,
.partner-form select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #b8cce0;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
}
.form-row input:focus,
.form-row select:focus,
.partner-form textarea:focus {
  border-color: var(--gold);
}
.partner-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #b8cce0;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  margin-bottom: 16px;
  resize: vertical;
      margin-top: 10px;
}

/* ── NEWSLETTER SECTION (FULLY RESPONSIVE) ── */
.newsletter-section {
  background: var(--navy);
  padding: 40px 0;
      border-bottom: 1px solid #80808052;
}
.newsletter-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: nowrap;
}
.newsletter-banner > div {
  flex: 1 1 auto;
  min-width: 0;
}
.newsletter-banner h3 {
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.3;
}
.newsletter-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.newsletter-form {
  flex-shrink: 0;
  max-width: 500px;
  width: 100%;
}
.newsletter-input-group {
  display: flex;
  gap: 0;
  width: 100%;
}
.newsletter-input-group input {
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: 16px;
  outline: none;
  width: 100%;
}
.newsletter-input-group button {
  background: var(--gold);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.newsletter-input-group button:hover {
  background: var(--gold2);
  color: var(--navy);
}

/* Responsive Newsletter */
@media (max-width: 900px) {
  .newsletter-banner {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .newsletter-banner > div {
    width: 100%;
    text-align: center;
  }
  .newsletter-form {
    max-width: 100%;
    width: 100%;
  }
  .newsletter-input-group {
    max-width: 400px;
    margin: 0 auto;
  }
}
@media (max-width: 500px) {
  .newsletter-input-group {
    flex-direction: column;
    gap: 8px;
    max-width: 100%;
  }
  .newsletter-input-group input {
    border-radius: 4px;
    padding: 12px 16px;
  }
  .newsletter-input-group button {
    border-radius: 4px;
    justify-content: center;
    width: 100%;
    padding: 12px 24px;
  }
}
.fb-wrap {
  position: fixed;
  left: 10px;
  bottom: 25px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fb-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

.fb-items.open {
  max-height: 300px;
  opacity: 1;
}

.fb-item {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
}

.fb-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ea9626;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── AI CHAT ASSISTANT ── */
.ai-chat-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(234,150,38,0.4);
  transition: transform 0.2s;
}
.ai-chat-btn:hover {
  transform: scale(1.1);
}
.ai-chat-window {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 340px;
  max-height: 480px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(10,22,40,0.2);
  z-index: 1000;
  display: none;
  flex-direction: column;
  overflow: hidden;
}
.ai-chat-window.open {
  display: flex;
}
.chat-header {
  background: var(--navy);
  color: white;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chat-header span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 18px;
  font-weight: 600;
}
.chat-header button {
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 18px;
}
.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  max-height: 340px;
}
.chat-msg {
  margin-bottom: 12px;
  display: flex;
  flex-direction: column;
}
.chat-msg.bot {
  align-items: flex-start;
}
.chat-msg.user {
  align-items: flex-end;
}
.msg-content {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 16px;
  line-height: 1.5;
  background: var(--light);
  color: var(--navy);
}
.chat-msg.user .msg-content {
  background: var(--navy);
  color: white;
}
.chat-quick {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 16px;
  font-weight: 600;
  margin: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.chat-quick:hover {
  background: var(--gold2);
  color: var(--navy);
}
.chat-input {
  display: flex;
  border-top: 1px solid #d4e0ef;
  padding: 10px;
  gap: 8px;
}
.chat-input input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #d4e0ef;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}
.chat-input button {
  width: 40px;
  height: 40px;
  background: var(--gold);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.chat-input button:hover {
  background: var(--gold2);
  color: var(--navy);
}

/* ── WHO STATS MINI ── */
.who-stats-mini {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.who-stats-mini div {
  font-size: 16px;
  color: var(--muted);
  padding: 6px 14px;
  background: var(--light);
  border-radius: 4px;
}
.who-stats-mini strong {
  color: var(--gold);
  font-size: 18px;
}

/* ── FOOTER DESC & BOTTOM LINKS ── */
.footer-desc {
  font-size: 16px;
  color:rgba(255, 255, 255, 0.75);
  margin-top: 10px;
  line-height: 1.6;
  text-align: justify;
}
.footer-bottom-links {
  display: flex;
  gap: 16px;
}
.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 16px;
  transition: color 0.2s;
}
.footer-bottom-links a:hover {
  color: var(--gold);
}

/* ════════════════════════════════════════════
   ── SUB-PAGE SPECIFIC STYLES ──
   ════════════════════════════════════════════ */

/* ── ABOUT PAGE ── */
.about-vmq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.about-vmq-card {
  background: var(--light);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
}
.about-vmq-icon {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 16px;
}
.about-vmq-card h3 {
 
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 14px;
}
.about-vmq-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
}
.vision-extra {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(234,150,38,0.3);
}
.motto-line {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-top: 12px;
}

/* Quality Full Page */
.quality-full {
  max-width: 900px;
  margin: 40px auto 0;
}
.quality-full-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
  color: white;
  margin-bottom: 30px;
}
.quality-full-icon {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}
.quality-full-card h3 {
 
  font-size: 22px;
  color: var(--white);
  margin-bottom: 14px;
}
.quality-full-card p {
  font-size: 18px;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  text-align: center;
}
.quality-principles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.qp-item {
  background: var(--white);
  border: 1px solid #d4e0ef;
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--navy);
  line-height: 1.5;
}
.qp-item i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}

/* Values Grid About */
.values-grid-about {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.value-card-about {
  background: var(--light);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
}
.value-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 22px;
  color: white;
}
.value-card-about h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.value-card-about p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Chairman Full */
.chairman-full-section {
  background: var(--light);
}
.chairman-full-grid {
  display: grid;
  /* grid-template-columns: 1fr 2fr; */
  gap: 40px;
  align-items: center;
}
.chairman-full-img {
  position: relative;
  text-align: center;
}
.chairman-full-img img {
  width: 100%;
  max-width: 280px;
  border-radius: 12px;
}
.chairman-full-badge {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: white;
  font-size: 16px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 20px;
  white-space: nowrap;
}
.chairman-full-msg h2 {
 
  font-size: clamp(24px, 3vw, 34px);
  color: var(--navy);
  margin-bottom: 16px;
}
.chairman-full-text p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.chairman-signature {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 2px solid var(--gold);
}
.chairman-signature strong {
  display: block;
  font-size: 16px;
  color: var(--navy);
}
.chairman-signature span {
  font-size: 16px;
  color: var(--muted);
}

/* Governance Grid */
.gov-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.gov-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
}
.gov-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.gov-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.gov-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

/* Timeline Vertical */
.timeline-vertical {
  position: relative;
  max-width: 700px;
  margin: 48px auto 0;
  padding-left: 40px;
}
.timeline-vertical::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}
.tlv-item {
  position: relative;
  margin-bottom: 36px;
}
.tlv-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold);
}
.tlv-year {
  font-size: 18px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
}
.tlv-content h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.tlv-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── BUSINESSES PAGE ── */
.company-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 48px;
}
.company-showcase.reverse {
  direction: rtl;
}
.company-showcase.reverse > * {
  direction: ltr;
}
.company-img {
  height: 320px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
}
.company-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--navy);
  color: white;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: 4px;
}
.company-number {
  font-size: 48px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 8px;
}
.company-info h3 {
 
  font-size: clamp(20px, 2.5vw, 28px);
  color: var(--navy);
  margin-bottom: 4px;
}
.company-tagline {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}
.company-info > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.company-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.cd-item {
  font-size: 16px;
  color: var(--muted);
}
.cd-item strong {
  color: var(--navy);
}

/* Industry Grid */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.industry-item {
  background: var(--white);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(10,22,40,0.05);
  transition: transform 0.3s ease;
}
.industry-item:hover {
  transform: translateY(-4px);
}
.industry-item i {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.industry-item span {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

/* ── INVESTORS PAGE ── */
.invest-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.invest-why-card {
  background: var(--light);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
}
.invest-why-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.invest-why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.invest-why-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.fin-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.fin-card {
  background: var(--navy);
  border-radius: 12px;
  padding: 32px 20px;
  text-align: center;
  color: white;
}
.fin-num {
  font-size: 32px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
}
.fin-label {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.gov-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.gov-detail-card {
  background: var(--light);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
}
.gov-detail-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.gov-detail-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.gov-detail-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.download-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
}
.download-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.download-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.download-card p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  /* background: var(--navy); */
  color: var(--navy);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.download-btn:hover {
  background: var(--gold);
  color: var(--navy);
}
.ir-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 48px;
}
.ir-contact-info h3 {
 
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
}
.ir-contact-info p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}
.ir-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 16px;
  color: var(--muted);
}
.ir-detail i {
  color: var(--gold);
  font-size: 18px;
  width: 24px;
}
.ir-cta {
  background: var(--light);
  border-radius: 12px;
  padding: 36px;
  text-align: center;
}
.ir-cta h3 {
 
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
}
.ir-cta p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── CAREERS PAGE ── */
.why-work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.why-work-card {
  background: var(--light);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
}
.why-work-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.why-work-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.why-work-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.life-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.life-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
}
.life-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.life-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.life-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.jobs-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.job-card {
  background: var(--light);
  border-radius: 12px;
  padding: 28px 24px;
}
.job-tag {
  display: inline-block;
  background: var(--gold);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.job-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.job-card > p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 12px;
}
.job-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.job-skills span {
  font-size: 10px;
  color: var(--navy);
  background: #dde8f5;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}
.job-apply {
  color: var(--gold);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.job-apply:hover {
  gap: 10px;
}
.internship-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.intern-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
}
.intern-card i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.intern-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.intern-card p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 16px;
}
.intern-apply {
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ── MEDIA PAGE ── */
.media-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.media-news-card {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.media-news-card:hover {
  transform: translateY(-4px);
}
.media-news-img {
  height: 180px;
  background-size: cover;
  background-position: center;
}
.media-news-body {
  padding: 20px;
}
.media-news-date {
  font-size: 10px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}
.media-news-body h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.4;
}
.media-news-body p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 12px;
}
.read-more {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.press-list {
  max-width: 700px;
  margin: 48px auto 0;
}
.press-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px rgba(10,22,40,0.04);
}
.press-date {
  font-size: 16px;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 600;
  min-width: 80px;
}
.press-content {
  flex: 1;
}
.press-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.press-content p {
  font-size: 16px;
  color: var(--muted);
}
.press-link {
  font-size: 16px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.gallery-item {
  height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,22,40,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay span {
  color: white;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
}

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-info h3 {
 
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
}
.contact-detail i {
  font-size: 20px;
  color: var(--gold);
  margin-top: 2px;
  width: 24px;
  flex-shrink: 0;
}
.contact-detail strong {
  color: var(--navy);
}
.contact-departments {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid #d4e0ef;
}
.contact-departments h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}
.dept-item {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 8px;
}
.dept-item strong {
  color: var(--navy);
}
.contact-socials {
  margin-top: 24px;
}
.contact-socials h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-form-wrap {
  background: var(--light);
  border-radius: 12px;
  padding: 36px;
}
.contact-form-wrap h3 {
 
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 20px;
}
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #b8cce0;
  border-radius: 4px;
  font-size: 16px;
  outline: none;
  margin-bottom: 16px;
  resize: vertical;
}
.contact-form textarea:focus {
  border-color: var(--gold);
}
.map-container {
  margin-top: 40px;
}
.map-placeholder {
  background: var(--white);
  border-radius: 12px;
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
}
.map-placeholder i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}
.map-placeholder h4 {
 
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.map-placeholder p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── CSR PAGE ── */
.csr-approach {
  max-width: 800px;
  margin: 40px auto 0;
}
.csr-approach p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.8;
  text-align: center;
}
.csr-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
}
.csr-stat-item {
  text-align: center;
}
.csr-stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
}
.csr-stat-label {
  font-size: 16px;
  color: var(--muted);
  letter-spacing: 1px;
}
.csr-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.csr-pillar {
  background: var(--white);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(10,22,40,0.05);
}
.csr-pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: white;
}
.csr-pillar h3 {
 
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 12px;
}
.csr-pillar p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.csr-pillar-impact {
  font-size: 16px;
  color: var(--gold);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.esg-card {
  border-radius: 12px;
  padding: 32px 24px;
  color: white;
}
.esg-card i {
  font-size: 40px;
  margin-bottom: 14px;
}
.esg-card h3 {
 
  font-size: 20px;
  margin-bottom: 16px;
}
.esg-card ul {
  list-style: none;
  padding: 0;
}
.esg-card ul li {
  font-size: 16px;
  padding: 6px 0;
  position: relative;
  padding-left: 20px;
}
.esg-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 18px;
}
.esg-environment { background: linear-gradient(135deg, #2e7d4f, #1a4f2e); }
.esg-social { background: linear-gradient(135deg, #1a4fa0, #0d1f3c); }
.esg-governance { background: linear-gradient(135deg, #0a1628, #1a4fa0); }

/* ── ACTIVE NAV LINK ── */
nav a.active {
  color: var(--gold);
  font-weight: 700;
}

/* ════════════════════════════════════════════
   ── RESPONSIVE FOR NEW SECTIONS ──
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .vmq-grid { grid-template-columns: 1fr; }
  .quality-content { flex-direction: column; }
  .chairman-grid { grid-template-columns: 1fr; }
  .values-animation { grid-template-columns: repeat(3, 1fr); }
  .why-premium-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .csr-grid { grid-template-columns: 1fr 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .about-vmq { grid-template-columns: 1fr; }
  .values-grid-about { grid-template-columns: 1fr 1fr; }
  .chairman-full-grid { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr 1fr; }
  .company-showcase { grid-template-columns: 1fr; }
  .company-showcase.reverse { direction: ltr; }
  .industry-grid { grid-template-columns: repeat(4, 1fr); }
  .invest-why-grid { grid-template-columns: 1fr 1fr; }
  .fin-highlights { grid-template-columns: 1fr 1fr; }
  .gov-detail-grid { grid-template-columns: 1fr 1fr; }
  .downloads-grid { grid-template-columns: 1fr 1fr; }
  .ir-contact { grid-template-columns: 1fr; }
  .why-work-grid { grid-template-columns: 1fr 1fr; }
  .life-grid { grid-template-columns: 1fr 1fr; }
  .jobs-list { grid-template-columns: 1fr; }
  .internship-grid { grid-template-columns: 1fr; }
  .media-news-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .csr-pillars-grid { grid-template-columns: 1fr 1fr; }
  .esg-grid { grid-template-columns: 1fr; }
  .quality-principles { grid-template-columns: 1fr; }
  .newsletter-banner { flex-direction: column; text-align: center; }
  .newsletter-input-group { min-width: unset; width: 100%; }
  .floating-bar { display: none; }
}

@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-animation { grid-template-columns: repeat(2, 1fr); }
  .why-premium-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .csr-grid { grid-template-columns: 1fr; }
  .values-grid-about { grid-template-columns: 1fr; }
  .gov-grid { grid-template-columns: 1fr; }
  .industry-grid { grid-template-columns: repeat(3, 1fr); }
  .invest-why-grid { grid-template-columns: 1fr; }
  .fin-highlights { grid-template-columns: 1fr; }
  .gov-detail-grid { grid-template-columns: 1fr; }
  .downloads-grid { grid-template-columns: 1fr; }
  .why-work-grid { grid-template-columns: 1fr; }
  .life-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .csr-pillars-grid { grid-template-columns: 1fr; }
  .csr-stats { flex-direction: column; gap: 20px; }
  .ai-chat-window { width: calc(100% - 32px); right: 16px; bottom: 80px; max-height: 400px; }
  .form-row { grid-template-columns: 1fr; }
  .eco-nodes { gap: 12px; }
  .eco-node { min-width: 100px; }
  .eco-tooltip { display: none !important; }
}


/* ── EMPLOYEE LOGIN MODAL ── */
.employee-login-modal {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.85);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}
.employee-login-modal.open {
  opacity: 1;
  visibility: visible;
}
.login-modal-box {
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 100%;
  padding: 40px 36px 36px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.employee-login-modal.open .login-modal-box {
  transform: translateY(0);
}
.login-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f0f0f0;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  color: #555;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.login-close-btn:hover {
  background: var(--gold);
  color: #fff;
}
.login-modal-logo {
  text-align: center;
  margin-bottom: 8px;
}
.login-modal-logo img {
  width: 50px;
  height: auto;
}
.login-modal-title {
  text-align: center;
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.login-modal-sub {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}
.login-input-group {
  margin-bottom: 16px;
}
.login-input-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.login-input-group .input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid #d4e0ef;
  border-radius: 6px;
  transition: border-color 0.3s ease;
  background: var(--light);
}
.login-input-group .input-wrap:focus-within {
  border-color: var(--gold);
}
.login-input-group .input-wrap i {
  padding: 0 12px;
  color: #9aabc0;
  font-size: 14px;
  flex-shrink: 0;
}
.login-input-group .input-wrap input {
  flex: 1;
  padding: 12px 12px 12px 0;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: transparent;
}
.login-input-group .input-wrap input::placeholder {
  color: #9aabc0;
}
.login-options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  font-size: 12px;
}
.login-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  cursor: pointer;
}
.login-remember input[type="checkbox"] {
  accent-color: var(--gold);
}
.login-forgot {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}
.login-forgot:hover {
  text-decoration: underline;
}
.login-submit-btn {
  width: 100%;
  padding: 13px;
  background: var(--gold);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease;
}
.login-submit-btn:hover {
  background: #d4851f;
}
.login-error {
  text-align: center;
  font-size: 12px;
  color: #e74c3c;
  margin-top: 12px;
  display: none;
}
.login-error.show {
  display: block;
}
@media (max-width: 480px) {
  .login-modal-box {
    padding: 30px 24px 28px;
  }
}

/* ── SCROLL TO TOP ── */
.scroll-to-top {
  position: fixed;
    bottom: 93px;
    right: 29px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--gold);
  font-size: 18px;
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-to-top:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234, 150, 38, 0.3);
}

/* ═══════════════════════════════════════
   NEW FEATURE STYLES — ADDED
   ═══════════════════════════════════════ */

/* ── 8. INDUSTRY COVERAGE INFOGRAPHIC ── */
.industry-infographic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
  position: relative;
}
.industry-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  border: 1px solid #e8edf5;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
}
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10,22,40,0.12);
  border-color: var(--gold);
}
.industry-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 16px;
  transition: transform 0.3s ease;
}
.industry-card:hover .industry-icon {
  transform: scale(1.15);
}
.industry-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.industry-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}
.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.industry-tag {
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 20px;
  background: var(--light);
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Industry card icon colors */
.industry-card:nth-child(1) .industry-icon { background: #1a4fa015; color: #1a4fa0; }
.industry-card:nth-child(2) .industry-icon { background: #2e7d4f15; color: #2e7d4f; }
.industry-card:nth-child(3) .industry-icon { background: #e07b3915; color: #e07b39; }
.industry-card:nth-child(4) .industry-icon { background: #4a3a8a15; color: #4a3a8a; }

/* ── 13. INVESTOR CENTRE ── */
.investor-centre {
  background: var(--navy);
  padding: 60px 0;
}
.investor-centre .section-title { color: white; }
.investor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.investor-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.investor-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.investor-card-icon {
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 16px;
}
.investor-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.investor-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 14px;
}
.investor-card-link {
  font-size: 16px;
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.investor-card-link:hover { gap: 10px; }

/* ── 18+19. INTERACTIVE INDIA MAP & GLOBAL PRESENCE ── */
.map-section {
  background: var(--light);
  padding: 60px 0;
}
.map-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.map-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px;
  min-height: 350px;
  position: relative;
  overflow: hidden;
}
.map-visual-world {
  background: linear-gradient(135deg, #0d1f3c, var(--navy));
}
.map-svg-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin {
  position: absolute;
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 0 rgba(234,150,38,0.4);
  animation: pulse-pin 2s infinite;
}
.map-pin:hover {
  transform: scale(1.3);
  box-shadow: 0 0 20px rgba(234,150,38,0.6);
}
.map-pin.pin-sm { width: 18px; height: 18px; font-size: 8px; }
.map-pin.pin-lg { width: 36px; height: 36px; font-size: 18px; }
@keyframes pulse-pin {
  0% { box-shadow: 0 0 0 0 rgba(234,150,38,0.4); }
  70% { box-shadow: 0 0 0 12px rgba(234,150,38,0); }
  100% { box-shadow: 0 0 0 0 rgba(234,150,38,0); }
}
.map-label {
  position: absolute;
  color: rgba(255,255,255,0.8);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  white-space: nowrap;
  pointer-events: none;
}
.map-info h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 16px;
}
.map-info p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}
.map-locations {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.map-location-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid #d4e0ef;
  transition: all 0.3s ease;
}
.map-location-badge:hover {
  border-color: var(--gold);
  background: #fef8ee;
}
.map-location-badge i { color: var(--gold); font-size: 16px; }
.map-location-badge.future { opacity: 0.5; border-style: dashed; }

/* ── 21. MEGA NAVIGATION MENU ── */
.mega-nav {
  position: relative;
}
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(10,22,40,0.18);
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  min-width: 700px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  z-index: 100;
}
.mega-nav:hover .mega-dropdown,
.mega-dropdown:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-col h5 {
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8edf5;
}
.mega-col a {
  display: block !important;
  padding: 6px 0 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  color: var(--navy) !important;
  white-space: nowrap;
  border-radius: 0 !important;
}
.mega-col a:hover {
  color: var(--gold) !important;
  padding-left: 4px !important;
}
.mega-col a i {
  width: 20px;
  color: var(--muted);
  font-size: 16px;
  margin-right: 6px;
}
.mega-nav-item {
  position: relative;
  cursor: pointer;
  padding: 8px 12px;
}
.mega-nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.mega-nav-item > a i.fa-chevron-down {
  font-size: 10px;
  color: var(--muted);
  transition: transform 0.2s;
}
.mega-nav-item:hover > a i.fa-chevron-down {
  transform: rotate(180deg);
}

/* ── MEGA MENU GROUPED LAYOUT ── */
.mega-col-left {
  text-align: left;
  min-width: 240px;
}
.mega-group {
  margin-bottom: 6px;
}
.mega-group-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  font-weight: 700;
  padding: 6px 0 4px;
  margin-bottom: 2px;
}
.mega-divider {
  height: 1px;
  background: #e8edf5;
  margin: 6px 0;
}
.mega-col-left a {
  display: flex !important;
  align-items: center;
  gap: 10px;
  padding: 7px 0 !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--navy) !important;
  border-radius: 0 !important;
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.mega-col-left a:hover {
  color: var(--gold) !important;
  padding-left: 4px !important;
}
.mega-col-left a i {
  width: 18px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  flex-shrink: 0;
}
.mega-col-left a:hover i {
  color: var(--gold);
}
.mega-dropdown {
  min-width: 260px !important;
  grid-template-columns: 1fr !important;
}

/* ── 22. FLOATING QUICK ACCESS BAR ── */
.quick-access-bar {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.quick-access-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: white;
  padding: 10px 14px 10px 10px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0 8px 8px 0;
  transition: all 0.25s ease;
  width: 40px;
  overflow: hidden;
  white-space: nowrap;
}
.quick-access-item:hover {
  width: 160px;
  background: var(--gold);
  color: var(--navy);
}
.quick-access-item i {
  font-size: 16px;
  min-width: 20px;
  text-align: center;
}
.quick-access-item .qa-text {
  opacity: 0;
  transition: opacity 0.2s ease 0.1s;
}
.quick-access-item:hover .qa-text {
  opacity: 1;
}

/* ── 27. LIVE SOCIAL FEED ── */
.social-feed-section {
  background: var(--white);
  padding: 60px 0;
}
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.social-feed-card {
  background: var(--light);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid #e8edf5;
  transition: all 0.3s ease;
  cursor: pointer;
}
.social-feed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10,22,40,0.08);
}
.social-feed-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.social-feed-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}
.social-feed-avatar.linkedin { background: #0077b5; }
.social-feed-avatar.youtube { background: #ff0000; }
.social-feed-avatar.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.social-feed-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}
.social-feed-card .social-platform {
  font-size: 16px;
  color: var(--muted);
}
.social-feed-card p {
  font-size: 16px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 12px;
}
.social-feed-card .social-time {
  font-size: 16px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.social-feed-cta {
  text-align: center;
  margin-top: 32px;
}
.social-follow-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-follow-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}
.social-follow-btn:hover { transform: translateY(-2px); opacity: 0.9; }
.social-follow-btn.linkedin { background: #0077b5; }
.social-follow-btn.youtube { background: #ff0000; }
.social-follow-btn.instagram { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }

/* ── 28. DOWNLOAD CORPORATE PROFILE ── */
.download-section {
  background: linear-gradient(135deg, var(--navy), #0d2a5a);
  padding: 60px 0;
}
.download-section .section-title { color: white; }
.download-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.download-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.download-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  border-color: var(--gold);
}
.download-card-icon {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 14px;
}
.download-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
}
.download-card p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}
.download-card .download-tag {
font-size: 16px;
    padding: 7px 10px;
    border-radius: 9px;
    background: var(--gold);
    color: white;
    font-weight: 600;
    display: inline-block;
}
.download-card .download-size {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
  display: block;
}

/* ── CAREER PORTAL ENHANCEMENTS ── */
.careers-enhanced-section {
  background: var(--light);
  padding: 60px 0;
}
.careers-enhanced-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 40px;
}
.careers-benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.career-benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(10,22,40,0.04);
  transition: all 0.3s ease;
}
.career-benefit-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(10,22,40,0.08);
}
.career-benefit-item i {
  font-size: 20px;
  color: var(--gold);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ea96261a;
  border-radius: 50%;
}
.career-benefit-item span {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.careers-upload-area {
  background: white;
  border: 2px dashed #d4e0ef;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
.careers-upload-area:hover {
  border-color: var(--gold);
  background: #fef8ee;
}
.careers-upload-area i {
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 12px;
}
.careers-upload-area h4 {
  font-size: 15px;
  color: var(--navy);
  margin-bottom: 6px;
}
.careers-upload-area p {
  font-size: 16px;
  color: var(--muted);
}

/* ── FOOTER BRAND COL ── */
.footer-brand-col {
  grid-column: 1 / -1;
  max-width: 100%;
}
.footer-contact-block {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.footer-contact-item i {
  flex-shrink: 0;
  margin-top: 3px;
  font-size: 14px;
  width: 16px;
  text-align: center;
}
.footer-contact-item strong {
  color: var(--gold);
}

/* ── FOOTER QR CODE ── */
.footer-qr {
  text-align: center;
  margin-top: 16px;
  padding: 16px;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.06);
}
.footer-qr-placeholder {
  /* width: 80px; */
  height: 80px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 36px;
  color: var(--navy);
}
.footer-qr p {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-align: center !important;
}

/* ── RESPONSIVE: NEW FEATURES ── */
@media (max-width: 1024px) {
  .industry-infographic { grid-template-columns: repeat(2, 1fr); }
  .investor-grid { grid-template-columns: repeat(2, 1fr); }
  .download-grid { grid-template-columns: repeat(2, 1fr); }
  .map-container { grid-template-columns: 1fr; }
  .mega-dropdown { display: none; }
  .quick-access-bar { display: none; }
  .social-feed-grid { grid-template-columns: 1fr; }
  .careers-enhanced-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .industry-infographic { grid-template-columns: 1fr; }
  .investor-grid { grid-template-columns: 1fr; }
  .download-grid { grid-template-columns: 1fr; }
  .careers-benefits-grid { grid-template-columns: 1fr; }
}


@media(max-width:652px) {
  .chairman-premium{
    display: flex;
    flex-wrap: wrap;
  }
}

/* ══════════════════════════════════════════════════
   INTERACTIVE INDIA MAP SECTION (Section 18)
   ══════════════════════════════════════════════════ */
.india-map-section {
  background: var(--navy);
  padding: 60px 0;
  color: white;
}
.india-map-section .section-title {
  color: white;
}
.india-map-wrapper {
  max-width: 600px;
  margin: 40px auto 0;
}
.india-map-container {
  position: relative;
  background: linear-gradient(135deg, #00122e, #002a5c);
  border: 1px solid rgba(234,150,38,0.2);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
}
.india-svg {
  width: 100%;
  height: auto;
  display: block;
}
.india-shape {
  transition: fill 0.5s ease, opacity 0.5s ease;
  cursor: pointer;
}
.india-shape:hover {
  fill: #2a5a8c;
}
.india-shape-glow {
  pointer-events: none;
}
.india-dot {
  cursor: pointer;
  transition: r 0.3s ease;
}
.india-dot:hover {
  r: 10;
}
.india-dot.active {
  animation: pulseIndiaActive 2s ease-in-out infinite;
}
.india-dot.future {
  animation: pulseIndiaFuture 2.5s ease-in-out infinite;
}
@keyframes pulseIndiaActive {
  0%, 100% { opacity: 1; r: 7; }
  50% { opacity: 0.5; r: 9; }
}
@keyframes pulseIndiaFuture {
  0%, 100% { opacity: 0.8; r: 8; }
  50% { opacity: 0.3; r: 10; }
}

/* ══════════════════════════════════════════════════
   GLOBAL PRESENCE SECTION (White background)
   ══════════════════════════════════════════════════ */
.global-presence-section {
  background: var(--white);
  padding: 60px 0;
  color: var(--navy);
}
.global-presence-section .section-title {
  color: var(--navy);
}
.global-presence-section .section-desc {
  color: var(--muted);
}

.world-map-wrapper {
  max-width: 900px;
  margin: 40px auto 0;
}

.world-map-container {
  position: relative;
  background: linear-gradient(135deg, #00122e, #002a5c);
  border: 1px solid rgba(234,150,38,0.2);
  border-radius: 16px;
  padding: 20px;
  overflow: hidden;
}

.world-map-svg {
  width: 100%;
  height: auto;
  display: block;
}

.continent {
  transition: fill 0.5s ease;
  cursor: pointer;
}
.continent:hover {
  fill: #2a5a8c;
}

.grid-line {
  animation: mapGridPulse 3s ease-in-out infinite;
}
@keyframes mapGridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.map-dot {
  cursor: pointer;
  transition: r 0.3s ease;
}
.map-dot:hover {
  r: 8;
}

.map-dot.active {
  animation: pulseActive 2s ease-in-out infinite;
}
.map-dot.future {
  animation: pulseFuture 2.5s ease-in-out infinite;
}
.map-dot.partner {
  animation: pulsePartner 3s ease-in-out infinite;
}

@keyframes pulseActive {
  0%, 100% { opacity: 1; r: 6; }
  50% { opacity: 0.5; r: 8; }
}
@keyframes pulseFuture {
  0%, 100% { opacity: 0.8; r: 5; }
  50% { opacity: 0.3; r: 7; }
}
@keyframes pulsePartner {
  0%, 100% { opacity: 0.7; r: 5; }
  50% { opacity: 0.3; r: 7; }
}

.connection-line {
  animation: connectionFlow 4s linear infinite;
}
@keyframes connectionFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 20; }
}

.map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  justify-content: center;
}
.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}
.legend-dot.active { background: #EA9626; }
.legend-dot.future { background: #4CAF50; }
.legend-dot.partner { background: #2196F3; }

/* Global Details Grid */
.global-details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.global-card {
  background: var(--light);
  border: 1px solid #d4e0ef;
  border-radius: 12px;
  padding: 24px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.global-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--gold);
}

.global-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.global-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(234,150,38,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #EA9626;
  flex-shrink: 0;
}
.global-card-header h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.global-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.global-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--muted);
  padding: 8px 0;
  border-bottom: 1px solid #e8edf5;
}
.global-list li:last-child {
  border-bottom: none;
}
.global-list li i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .global-details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .global-details-grid {
    grid-template-columns: 1fr;
  }
  .map-legend {
    flex-direction: column;
    align-items: center;
  }
}


/* ── NEWSLETTER CATEGORY CHECKBOXES ── */
.newsletter-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.newsletter-cat {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  position: relative;
  padding: 4px 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  transition: all 0.3s ease;
  user-select: none;
}
.newsletter-cat:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--gold);
}
.newsletter-cat input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.cat-checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
  position: relative;
}
.newsletter-cat input:checked + .cat-checkmark {
  background: var(--gold);
  border-color: var(--gold);
}
.newsletter-cat input:checked + .cat-checkmark::after {
  content: '\2713';
  font-size: 11px;
  color: var(--navy);
  font-weight: 700;
  line-height: 1;
}
.cat-label {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.newsletter-cat input:checked ~ .cat-label {
  color: var(--gold);
}

/* ── NEWSLETTER ERROR & NOTE ── */
.newsletter-error {
  color: #ff6b6b;
  font-size: 13px;
  margin-top: 8px;
  display: none;
  background: rgba(255,107,107,0.1);
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid rgba(255,107,107,0.2);
}
.newsletter-note {
  color: rgba(255,255,255,0.4);
  font-size: 11px;
  margin-top: 8px;
  text-align: left;
}

@media (max-width: 900px) {
  .newsletter-banner {
    flex-wrap: wrap;
    gap: 20px;
  }
  .newsletter-banner > div {
    width: 100%;
    text-align: center;
  }
  .newsletter-form {
    max-width: 100%;
    min-width: unset;
    width: 100%;
  }
  .newsletter-input-group {
    max-width: 400px;
  }
  .newsletter-categories {
    justify-content: center;
  }
}
@media (max-width: 500px) {
  .newsletter-input-group {
    flex-direction: column;
    border-radius: 6px;
  }
 
  .newsletter-input-group button {
    /* border-radius: 0 0 6px 6px; */
    justify-content: center;
  }
  .newsletter-categories {
    gap: 8px;
  }
  .newsletter-cat {
    padding: 4px 10px;
  }
  .cat-label {
    font-size: 16px;
  }
  .cat-checkmark {
    width: 14px;
    height: 14px;
  }
}

/* ════════════════════════════════════════
   SUSTAINABILITY & CSR SECTION
   ════════════════════════════════════════ */
.csr-esg-section {
  padding: 80px 0;
  background: var(--white);
}

.csr-esg-sub {
  margin-top: 48px;
}

.csr-esg-sub-header {
  text-align: center;
  margin-bottom: 36px;
}

.csr-esg-sub-badge {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #2196F3;
  background: rgba(33,150,243,0.1);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.csr-esg-sub-title {
  font-family: 'EB Garamond', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.csr-esg-sub-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.csr-esg-sub-desc {
  font-size: 16px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.csr-esg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.csr-esg-card {
  background: #fff;
  border: 1px solid #e8edf4;
  border-radius: 16px;
  padding: 32px 24px 28px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.csr-esg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8c96d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.csr-esg-card:hover::before {
  transform: scaleX(1);
}

.csr-esg-card:hover {
  border-color: rgba(234,150,38,0.3);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,24,58,0.08);
}

.csr-esg-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 26px;
  transition: all 0.4s ease;
}

.csr-esg-card:hover .csr-esg-icon {
  transform: scale(1.1);
}

.csr-esg-card h4 {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.csr-esg-card p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.csr-esg-divider {
  text-align: center;
  margin: 48px 0 8px;
  position: relative;
}

.csr-esg-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #d4e0ef, transparent);
  transform: translateY(-50%);
}

.csr-esg-divider span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  padding: 0 24px;
  font-size: 20px;
  color: var(--gold);
}

.csr-esg-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .csr-esg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .csr-esg-sub-title {
    font-size: 26px;
  }
}

@media (max-width: 550px) {
  .csr-esg-grid {
    grid-template-columns: 1fr;
  }
  .csr-esg-sub-title {
    font-size: 22px;
  }
  .csr-esg-section {
    padding: 50px 0;
  }
}

/* ════════════════════════════════════════
   CAREER PORTAL SECTION
   ════════════════════════════════════════ */
.career-portal-section {
  padding: 80px 0;
  background: var(--white);
}

/* ── Why Work Cards Grid ── */
.career-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  /* max-width: 800px; */
  margin-left: auto;
  margin-right: auto;
}
.career-why-card:nth-child(4),
.career-why-card:nth-child(5) {
  grid-column: span 1;
}
.career-why-grid > .career-why-card:nth-child(4) {
  grid-column: 1 / 2;
}
.career-why-grid > .career-why-card:nth-child(5) {
  grid-column: 2 / 3;
}
/* Center the 2 bottom cards under the first 2 of 3 top cards */
.career-why-grid {
  grid-template-areas:
    "card1 card2 card3"
    ". card4 card5";
}
.career-why-card:nth-child(1) { grid-area: card1; }
.career-why-card:nth-child(2) { grid-area: card2; }
.career-why-card:nth-child(3) { grid-area: card3; }
.career-why-card:nth-child(4) { grid-area: card4; }
.career-why-card:nth-child(5) { grid-area: card5; }
.career-why-card {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 28px 20px 24px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.career-why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #EA9626, #e8c96d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.career-why-card:hover::before {
  transform: scaleX(1);
}
.career-why-card:hover {
  border-color: rgba(234,150,38,0.3);
  box-shadow: 0 8px 30px rgba(0,24,58,0.08);
  transform: translateY(-4px);
}
.career-why-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  transition: all 0.4s ease;
}
.career-why-card:hover .career-why-icon {
  transform: scale(1.1) rotate(-5deg);
}
.career-why-card h4 {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.career-why-card > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.career-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.career-why-list li {
  font-size: 16px;
  color: var(--muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.career-why-list li i {
  color: #4CAF50;
  font-size: 16px;
}

/* ── Vacancies Section ── */
.career-vacancies-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid #e8edf5;
}
.career-section-subtitle {
  font-family: 'EB Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.career-section-desc {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}
.career-jobs-grid {
  display: grid;
    grid-template-columns: repeat(auto-fit, minmax(301px, 1fr));
  gap: 20px;
}
.career-job-card {
  background: var(--white);
  border: 1px solid #e8edf5;
  border-radius: 14px;
  padding: 24px 20px 20px;
  transition: all 0.4s ease;
  position: relative;
}
.career-job-card:hover {
  border-color: rgba(234,150,38,0.3);
  box-shadow: 0 8px 30px rgba(0,24,58,0.08);
  transform: translateY(-4px);
}
.career-job-badge {
  display: inline-block;
  background: rgba(33,150,243,0.12);
  color: #2196F3;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.career-job-card h4 {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.career-job-meta {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 10px;
}
.career-job-meta i {
  color: var(--gold);
  width: 16px;
}
.career-job-card > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 12px;
}
.career-job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}
.career-job-tags span {
  background: var(--light);
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 4px;
}
.career-job-apply {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.career-job-apply i {
  font-size: 14px;
  transition: transform 0.3s ease;
}
.career-job-apply:hover {
  color: #d4851f;
}
.career-job-apply:hover i {
  transform: translateX(4px);
}
.career-view-all {
  text-align: center;
  margin-top: 32px;
}

/* ── Upload Resume Section ── */
.career-upload-section {
  margin-top: 60px;
  /* padding-top: 40px; */
  border-top: 1px solid #e8edf5;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--light);
  border-radius: 20px;
  overflow: hidden;
}
.career-upload-content {
  padding: 40px 40px 40px 48px;
}
.career-upload-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(234,150,38,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
}
.career-upload-content h3 {
  font-family: 'EB Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.career-upload-content > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}
.career-upload-features {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.career-upload-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--muted);
  background: rgba(0,0,0,0.03);
  padding: 6px 14px;
  border-radius: 6px;
}
.career-upload-features span i {
  color: var(--gold);
}
.career-upload-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.career-upload-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d4e0ef;
  border-radius: 8px;
  font-size: 16px;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s ease;
}
.career-upload-input:focus {
  border-color: var(--gold);
}
.career-file-upload {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.career-file-upload input[type="file"] {
  display: none;
}
.career-file-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px dashed #d4e0ef;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.3s ease;
}
.career-file-label:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.career-file-label i {
  color: var(--gold);
}
.career-file-name {
  font-size: 16px;
  color: var(--muted);
}
.career-upload-image {
  background: var(--navy);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  min-height: 320px;
}
.career-upload-image-inner {
  text-align: center;
  color: var(--white);
}
.career-upload-image-inner > i {
  font-size: 48px;
  color: var(--gold);
  margin-bottom: 16px;
}
.career-upload-image-inner h4 {
  font-family: 'EB Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}
.career-upload-image-inner > p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 24px;
}
.career-upload-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.career-upload-stats div {
  text-align: center;
}
.career-upload-stats div strong {
  display: block;
  font-size: 24px;
  color: var(--gold);
  font-weight: 800;
}
.career-upload-stats div {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .career-why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .career-jobs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
     .career-why-grid {
        display: flex;
        flex-direction: column;
    }
  .career-jobs-grid {
    grid-template-columns: 1fr;
  }
  .career-upload-section {
    grid-template-columns: 1fr;
  }
  .career-upload-content {
    padding: 32px 24px;
  }
  .career-upload-image {
    min-height: 200px;
    padding: 32px 24px;
  }
}
/* ── GROUP OBJECTIVES SECTION ── */
.objectives-section {
  background: linear-gradient(135deg, #00122e 0%, #002a5c 50%, var(--navy) 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.objectives-intro {
  text-align: center;
  color: rgba(255,255,255,0.65);
  font-size: 19px;
  line-height: 1.7;
  max-width: 650px;
  margin: 0 auto 36px;
  font-family: "EB Garamond", serif;
}
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  position: relative;
  z-index: 1;
}
.objective-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.objective-card:hover {
  border-color: rgba(234,150,38,0.25);
  background: rgba(255,255,255,0.07);
}
.objective-card-inner {
  padding: 12px 16px;
  transition: all 0.3s ease;
}
.objective-card-inner::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #e8c96d);
  transition: width 0.4s ease;
}
.objective-card:hover .objective-card-inner::after {
  width: 100%;
}
.objective-num-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}
.objective-num {
  font-family: "EB Garamond", serif;
  font-size: 16px;
  font-weight: 800;
  color: rgb(234 150 38 / 39%);
  line-height: 1;
}
.objective-icon {
  width: 24px;
  height: 24px;
  background: rgba(234,150,38,0.1);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gold);
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.objective-card:hover .objective-icon {
  background: var(--gold);
  color: white;
}
.objective-card-inner h4 {
  font-family: "EB Garamond", serif;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  line-height: 1.2;
}
.objective-card-inner p {
  font-size: 17px;
  line-height: 1.5;
  color: rgba(255,255,255,0.5);
  font-family: "EB Garamond", serif;
}
.objectives-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  position: relative;
  z-index: 1;
}
.objectives-intro {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto 28px;
  font-family: "EB Garamond", serif;
}
.objectives-section {
  background: linear-gradient(135deg, #00122e 0%, #002a5c 50%, var(--navy) 100%);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .objectives-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .objectives-section {
    padding: 30px 0;
  }
  .objectives-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .objectives-intro {
    font-size: 13px;
    padding: 0 10px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .objective-card-inner {
    padding: 10px 12px;
  }
  .objective-num {
    font-size: 14px;
  }
  .objective-card-inner h4 {
    font-size: 13px;
  }
  .objective-card-inner p {
    font-size: 11px;
  }
  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}


  .mobiletoggle{
    display:none
  }



  /* ── REDESIGNED PARTNER SECTION (HOME PAGE) ── MULTI-STEP FORM ── */
.partner-section {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(180deg, #f8fafc 0%, var(--white) 100%);
  overflow: hidden;
}
.partner-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), #d4851f, var(--gold));
  opacity: 0.3;
}
.partner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── LEFT SIDE ── */
.partner-left .section-label {
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
.partner-left h2 {
  font-family: 'EB Garamond', serif;
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 18px;
}
.partner-left h2 span { color: var(--gold); }
.partner-left > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}
.partner-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}
.partner-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  border: 1.5px solid #e0e8f0;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}
.partner-tag:hover {
  background: rgba(234,150,38,0.06);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234,150,38,0.1);
}
.partner-tag i { color: var(--gold); font-size: 13px; }
.partner-left .partner-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}
.partner-left .partner-cta:hover {
  background: #002a5c;
  box-shadow: 0 8px 24px rgba(10,22,40,0.2);
  transform: translateY(-2px);
}
.partner-left .partner-cta i { transition: transform 0.3s ease; }
.partner-left .partner-cta:hover i { transform: translateX(4px); }

/* ── RIGHT SIDE - MULTI-STEP FORM ── */
.partner-right { position: relative; }
.partner-form-wrap {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 36px 40px;
  box-shadow: 0 8px 40px rgba(10,22,40,0.08);
  border: 1px solid #eef2f7;
  position: relative;
  overflow: hidden;
}
.partner-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}
.partner-form-header {
  text-align: center;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eef2f7;
}
.partner-form-header h3 {
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.partner-form-header h3 i { color: var(--gold); margin-right: 8px; }
.partner-form-header p {
  font-size: 13px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}

/* ── PROGRESS BAR ── */
.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 32px;
  padding: 0 8px;
}
.progress-step {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: #b0c0d0;
  white-space: nowrap;
  transition: all 0.3s ease;
}
.progress-step .step-dot {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #e8eef5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #8aa0b8;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  border: 2px solid transparent;
}
.progress-step.active .step-dot {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10,22,40,0.2);
  border-color: var(--gold);
}
.progress-step.completed .step-dot {
  background: #2e7d4f;
  color: var(--white);
  border-color: #2e7d4f;
}
.progress-step.completed .step-dot i { font-size: 12px; }
.progress-step .step-label { display: none; }
.progress-step.active .step-label,
.progress-step.completed .step-label {
  display: inline;
  color: var(--navy);
  font-weight: 600;
}
.progress-line {
  flex: 1;
  height: 2px;
  background: #e8eef5;
  border-radius: 2px;
  min-width: 16px;
  max-width: 48px;
  position: relative;
  overflow: hidden;
}
.progress-line .progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0;
}
.progress-line.filled .progress-fill { width: 100%; }

/* ── FORM STEPS ── */
.form-step {
  display: none;
  animation: stepFadeIn 0.4s ease;
}
.form-step.active { display: block; }
@keyframes stepFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.form-step-title {
  font-family: 'EB Garamond', serif;
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f7;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-step-title .step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--navy), #002a5c);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.form-step .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}
.form-step .form-row:last-child { margin-bottom: 0; }
.form-step .form-group {
  display: flex;
  flex-direction: column;
}
.form-step .form-group.full {
  grid-column: 1 / -1;
}
.form-step .form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #1a2a4a;
  margin-bottom: 5px;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.2px;
}
.form-step .form-group label .required { color: #e74c3c; }
.form-step .form-group input,
.form-step .form-group select,
.form-step .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #dfe6ef;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1a2a4a;
  background: var(--white);
  transition: all 0.3s ease;
  outline: none;
}
.form-step .form-group input:hover,
.form-step .form-group select:hover,
.form-step .form-group textarea:hover { border-color: #b8c8dc; }
.form-step .form-group input:focus,
.form-step .form-group select:focus,
.form-step .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(234,150,38,0.12);
  background: #fffdf8;
}
.form-step .form-group input::placeholder,
.form-step .form-group textarea::placeholder { color: #a0b4c8; }
.form-step .form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238aa0b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-step .form-group textarea {
  min-height: 80px;
  resize: vertical;
  line-height: 1.5;
}

/* ── NAVIGATION BUTTONS ── */
.form-nav {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eef2f7;
}
.form-nav .btn-prev {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--navy);
  border: 1.5px solid #dfe6ef;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}
.form-nav .btn-prev:hover {
  border-color: var(--navy);
  background: #f8fafc;
}
.form-nav .btn-prev i { font-size: 13px; }
.form-nav .btn-next {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}
.form-nav .btn-next:hover {
  background: #002a5c;
  box-shadow: 0 4px 16px rgba(10,22,40,0.2);
  transform: translateY(-1px);
}
.form-nav .btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--gold), #d4851f);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.form-nav .btn-submit::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s ease;
}
.form-nav .btn-submit:hover::before { left: 100%; }
.form-nav .btn-submit:hover {
  background: linear-gradient(135deg, #d4851f, #b8731a);
  box-shadow: 0 8px 28px rgba(234,150,38,0.35);
  transform: translateY(-2px);
}
.form-nav .btn-submit i { font-size: 14px; transition: transform 0.3s ease; }
.form-nav .btn-submit:hover i { transform: translateX(4px); }
.form-nav-note {
  text-align: center;
  font-size: 11px;
  color: #8aa0b8;
  margin-top: 12px;
  font-family: 'Inter', sans-serif;
}
.form-nav-note .required-star { color: #e74c3c; }

/* ── SUCCESS MESSAGE ── */
.partner-success {
  display: none;
  text-align: center;
  padding: 48px 20px;
  animation: successPop 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.partner-success.show { display: block; }
@keyframes successPop {
  0% { opacity: 0; transform: scale(0.95); }
  50% { transform: scale(1.02); }
  100% { opacity: 1; transform: scale(1); }
}
.partner-success .succ-icon {
  width: 80px; height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: succIconAnim 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes succIconAnim {
  0% { transform: scale(0) rotate(-45deg); }
  60% { transform: scale(1.1) rotate(5deg); }
  100% { transform: scale(1) rotate(0); }
}
.partner-success .succ-icon i { font-size: 36px; color: #2e7d4f; }
.partner-success h4 {
  font-family: 'EB Garamond', serif;
  font-size: 26px;
  color: var(--navy);
  margin-bottom: 8px;
}
.partner-success p {
  font-size: 14px;
  color: #5a6a7a;
  max-width: 400px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}
.partner-success .succ-ref {
  display: inline-block;
  margin-top: 16px;
  padding: 8px 20px;
  background: #f0f4f9;
  border-radius: 6px;
  font-size: 12px;
  color: var(--muted);
  font-family: 'Inter', sans-serif;
}
.partner-success .succ-ref strong { color: var(--navy); }

/* ── LEADERSHIP GRID (image-free design for index.html) ── */
.leaders-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.leader-card-new {
  background: var(--white);
  border-radius: 14px;
  padding: 28px 16px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(10,22,40,0.05);
  cursor: default;
}
.leader-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10,22,40,0.12);
  border-color: rgba(234,150,38,0.25);
}
.leader-initials {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #0f2d5a);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-family: 'EB Garamond', serif;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}
.leader-card-new:hover .leader-initials {
  transform: scale(1.08);
}
.leader-card-new .leader-title {
  font-size: 10px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.leader-card-new .leader-name {
  font-family: 'EB Garamond', serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.leader-card-new .leader-desc {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* ── LEADERSHIP PAGE: Image-free cards (Board, Executive) ── */
.leader-card-new-lead {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 20px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(10,22,40,0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid rgba(10,22,40,0.05);
}
.leader-card-new-lead:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(10,22,40,0.12);
  border-color: rgba(234,150,38,0.25);
}
.leader-init-lead {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #0f2d5a);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: 'EB Garamond', serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
}
.leader-card-new-lead:hover .leader-init-lead {
  transform: scale(1.1);
}
.leader-card-new-lead h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2px;
}
.leader-card-new-lead .role {
  font-size: 12px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.leader-card-new-lead p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.leader-card-new-lead .leader-social {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.leader-card-new-lead .leader-social a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.leader-card-new-lead .leader-social a:hover {
  background: var(--gold);
  color: white;
}

@media (max-width: 1024px) {
  .leaders-grid-new {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .leaders-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .leader-card-new {
    padding: 22px 12px 18px;
  }
  .leader-initials {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .leaders-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .leader-card-new .leader-name {
    font-size: 15px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .partner-grid { grid-template-columns: 1fr; gap: 36px; }
  .partner-left > p { max-width: 100%; }
}
@media (max-width: 768px) {
  .partner-section { padding: 50px 0; }
  .partner-form-wrap { padding: 24px 20px 28px; border-radius: 16px; }
  .form-step .form-row { grid-template-columns: 1fr; }
  .progress-step .step-label { display: none !important; }
  .progress-step .step-dot { width: 26px; height: 26px; font-size: 11px; }
  .progress-line { min-width: 10px; max-width: 30px; }
  .form-nav { flex-wrap: wrap; }
  .form-nav .btn-prev,
  .form-nav .btn-next { flex: 1; justify-content: center; }
  .form-nav .btn-next { margin-left: 0; }
  .partner-types { gap: 8px; }
  .partner-tag { font-size: 12px; padding: 8px 14px; }
}
@media (max-width: 480px) {
  .partner-form-wrap { padding: 20px 16px 24px; }
}

/* ── BDM JOB MODAL ── */
.bdm-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.bdm-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.bdm-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0.9);
  width: 92%;
  max-width: 680px;
  max-height: 90vh;
  background: #fff;
  border-radius: 16px;
  z-index: 100000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.bdm-modal.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%,-50%) scale(1);
}
.bdm-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  border-bottom: 1px solid #eef2f7;
  background: #f8faff;
  position: sticky;
  top: 0;
  z-index: 1;
}
.bdm-modal-header h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.bdm-modal-close {
  width: 32px;
  height: 32px;
  border: none;
  background: var(--navy);
  color: #fff;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.bdm-modal-close:hover {
  background: #EA9626;
}
.bdm-modal-body {
  padding: 32px 28px;
  overflow-y: auto;
  max-height: calc(90vh - 60px);
}
.bdm-modal-body::-webkit-scrollbar {
  width: 5px;
}
.bdm-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.bdm-modal-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 4px;
}
.bdm-modal-body::-webkit-scrollbar-thumb:hover {
  background: #999;
}


@media (min-width:1000px) and (max-width:1272px) {
  .btn-partner{
    display: none;
  }
}