/* =============================================================
   GOPIO: Global Organization of People of Indian Origin
   Stylesheet  |  styles.css
   =============================================================
   TABLE OF CONTENTS
   ---------------------------------------------------------
   01. Reset & Base
   02. CSS Custom Properties (Variables)
   03. Top Bar
   04. Navigation / Navbar
   05. Mobile Hamburger Menu
   06. Buttons
   07. Hero Slider
   08. Banner Strip
   09. Section Helpers
   10. Who We Are – Gallery & Pillar Cards
   11. Stats Band
   12. What We Do – Services Grid
   13. Board of Directors
   14. Events & Publications
   15. Partners
   16. CTA Band
   17. Contact & Subscribe Form
   18. Footer
   19. Scroll Reveal Animations
   20. Responsive – 1200px (large tablet)
   21. Responsive – 1024px (tablet landscape)
   22. Responsive – 900px  (tablet portrait)
   23. Responsive – 640px  (large mobile)
   24. Responsive – 480px  (small mobile)
   ============================================================= */


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Raleway', sans-serif;
  background: #fff;
  color: #1a1a2e;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }


/* ============================================================
   02. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
  --red:        #E0000F;
  --blue:       #0425B9;
  --blue-dark:  #031890;
  --blue-light: #e8ecff;
  --red-light:  #fff0f1;
  --gray-50:    #f9fafb;
  --gray-100:   #f4f5f7;
  --gray-200:   #e8eaed;
  --gray-400:   #9aa0ad;
  --gray-700:   #3d4252;
  --dark:       #0d0f1c;
  --nav-h:      76px;
  --pad:        60px;
}


/* ============================================================
   03. TOP BAR
   ============================================================ */
.topbar {
  background: var(--dark);
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 999;           /* sits above overlay (998) so links stay tappable */
}

.topbar-inner {
  padding: 0 var(--pad);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-network {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.topbar-network .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  flex-shrink: 0;
}

.topbar-network strong { color: #fff; }

.topbar-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.topbar-links a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
  white-space: nowrap;
}

.topbar-links a:hover { color: #fff; }

.tl-div {
  width: 1px;
  height: 14px;
  background: rgba(255,255,255,0.15);
}

.topbar-btn {
  background: var(--red) !important;
  color: #fff !important;
  padding: 4px 14px;
  border-radius: 2px;
  font-weight: 700 !important;
}

.topbar-btn:hover { background: #c2000d !important; }


/* ============================================================
   04. NAVIGATION / NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  height: var(--nav-h);
  border-bottom: 2px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(4,37,185,0.07);
}

.nav-inner {
  padding: 0 var(--pad);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
  z-index: 1001;
}

.nav-logo > img {
  height: 52px;
  width: auto;
  object-fit: contain;
}

/* Country flags beside logo */
.nav-flags {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-flag {
  height: 42px;
  width: auto;
  border-radius: 2px;
  display: block;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.nav-logo-text .brand {
  font-size: 13px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-logo-text .full {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-700);
  max-width: 230px;
  line-height: 1.35;
}

/* Desktop nav menu */
.nav-menu {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-item > a {
  padding: 0 13px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-700);
  transition: color 0.2s;
  position: relative;
  white-space: nowrap;
}

.nav-item > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 13px;
  right: 13px;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}

.nav-item:hover > a,
.nav-item.active > a { color: var(--blue); }

.nav-item:hover > a::after,
.nav-item.active > a::after { transform: scaleX(1); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(var(--nav-h) + 2px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: 220px;
  background: #fff;
  border-top: 3px solid var(--blue);
  box-shadow: 0 12px 40px rgba(4,37,185,0.12);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 200;
}

.nav-item:hover .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: block;
  padding: 11px 20px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
}

.dropdown a:last-child { border-bottom: none; }

.dropdown a:hover {
  background: var(--blue-light);
  color: var(--blue);
  padding-left: 26px;
}

/* Navbar CTA */
.nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s;
  flex-shrink: 0;
  height: auto !important;
  white-space: nowrap;
}

.nav-cta:hover { background: var(--blue-dark); }
.nav-cta::after { display: none !important; }


/* ============================================================
   05. MOBILE HAMBURGER MENU
   ============================================================ */

/* The hamburger button — hidden on desktop */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.2s;
}

/* Animated X state */
.hamburger.open span:nth-child(1) {
  transform: translateY(8.75px) rotate(45deg);
  background: var(--red);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8.75px) rotate(-45deg);
  background: var(--red);
}

/* Mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  background: #fff;
  z-index: 999;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  padding: calc(var(--nav-h) + 20px) 0 40px;
}

.mobile-nav.open {
  right: 0;
}

/* Overlay backdrop */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;   /* closed: never intercept taps */
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;   /* open: intercept taps to close drawer */
}

/* Mobile nav links */
.mobile-nav-list {
  padding: 0 24px;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--gray-200);
}

.mobile-nav-item > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dark);
  transition: color 0.2s;
}

.mobile-nav-item > a:hover,
.mobile-nav-item.active > a { color: var(--blue); }

.mobile-nav-item > a .arrow {
  font-size: 11px;
  color: var(--gray-400);
  transition: transform 0.25s;
}

.mobile-nav-item.has-sub.open > a .arrow {
  transform: rotate(90deg);
}

/* Mobile sub-menu */
.mobile-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--gray-50);
  margin: 0 -24px;
  padding: 0 24px;
}

.mobile-nav-item.open .mobile-sub {
  max-height: 400px;
}

.mobile-sub a {
  display: block;
  padding: 11px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
  transition: color 0.15s, padding-left 0.15s;
}

.mobile-sub a:last-child { border-bottom: none; }
.mobile-sub a:hover { color: var(--blue); padding-left: 22px; }

/* Mobile CTA */
.mobile-nav-cta {
  margin: 24px 24px 0;
  display: block;
  text-align: center;
  background: var(--blue);
  color: #fff !important;
  padding: 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
}

.mobile-nav-cta:hover { background: var(--blue-dark); }


/* ============================================================
   06. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 3px;
  font-family: 'Raleway', sans-serif;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn svg { width: 15px; height: 15px; flex-shrink: 0; }

.btn-red  { background: var(--red);  color: #fff; }
.btn-red:hover  { background: #c2000d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(224,0,15,0.35); }

.btn-blue { background: var(--blue); color: #fff; }
.btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(4,37,185,0.3); }

.btn-outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.32); }
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }

.btn-white { background: #fff; color: var(--blue); }
.btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }

.btn-outline-w { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline-w:hover { background: rgba(255,255,255,0.1); }


/* ============================================================
   07. HERO SLIDER
   ============================================================ */
.hero-outer {
  background: var(--gray-50);
  padding: 28px var(--pad) 36px;
}

.hero-slider-wrap {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  height: 520px;
  box-shadow: 0 24px 72px rgba(4,37,185,0.18);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
  pointer-events: none;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: all;
}

.hero-slide img.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(140,0,10,0.88) 0%, rgba(140,0,10,0.6) 45%, rgba(140,0,10,0.10) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  padding: 0 56px;
}

.hero-text { max-width: 570px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(4,37,185,0.25);
  border: 1px solid rgba(4,37,185,0.55);
  border-radius: 2px;
  padding: 5px 14px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  display: block;
}

/* Flag images in hero tag */
.hero-tag-flag {
  height: 14px;
  width: auto;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 4px;
  display: inline-block;
}

.hero-content h1 {
  font-size: clamp(24px, 3.5vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.hero-content h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #4a6fff, #a0b8ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.slide-counter {
  position: absolute;
  top: 24px;
  right: 28px;
  z-index: 10;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}

.slide-counter strong { color: #fff; font-size: 20px; }

.slider-controls {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 9px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.slider-dot.active { background: var(--red); transform: scale(1.3); }

.slider-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  backdrop-filter: blur(8px);
}

.slider-btn:hover { background: var(--red); border-color: var(--red); }


/* ============================================================
   08. BANNER STRIP
   ============================================================ */
.banner-strip { background: var(--blue); padding: 0 var(--pad); }

.banner-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-left: 1px solid rgba(255,255,255,0.1);
}

.strip-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s;
  cursor: pointer;
}

.strip-item:hover { background: rgba(255,255,255,0.07); }

.strip-icon { width: 44px; height: 44px; border-radius: 6px; overflow: hidden; flex-shrink: 0; }
.strip-icon img { width: 100%; height: 100%; object-fit: cover; }

.strip-text .t { font-size: 13px; font-weight: 700; color: #fff; }
.strip-text .s { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.5); }


/* ============================================================
   09. SECTION HELPERS
   ============================================================ */
.sec { padding: 80px var(--pad); }
.sec-alt { background: var(--gray-50); }
.sec-white { background: #fff; }

.stag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.stag::before { content: ''; display: block; width: 26px; height: 2px; }

.stag-red  { color: var(--red);  }
.stag-red::before  { background: var(--red);  }
.stag-blue { color: var(--blue); }
.stag-blue::before { background: var(--blue); }

.stitle {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--dark);
}

.stitle em { font-style: normal; color: var(--blue); }

.sdesc {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.75;
  max-width: 560px;
  margin-top: 14px;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s;
  white-space: nowrap;
}

.view-all:hover { gap: 10px; }
.view-all::after { content: '→'; }


/* ============================================================
   10. WHO WE ARE – GALLERY & SQUARE PILLAR CARDS
   ============================================================ */
.about-new-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ---- Left: premium image slider ---- */
.gallery-col {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  min-height: 520px;
  background: var(--dark);
  box-shadow: 0 20px 60px rgba(4,37,185,0.12);
}

/* ── Slides stack ── */
.gc-slides {
  position: absolute;
  inset: 0;
}

.gc-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.gc-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.gc-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* ── Prev / Next arrows ── */
.gc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
  background: rgba(0,0,0,0.35);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  line-height: 1;
}

.gc-arrow:hover {
  background: var(--red);
  border-color: var(--red);
  transform: translateY(-50%) scale(1.1);
}

.gc-prev { left: 16px; }
.gc-next { right: 68px; } /* offset so badge doesn't overlap */

/* ── Bottom bar: counter + dots ── */
.gc-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  padding: 28px 20px 18px;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gc-counter {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.7);
}

.gc-counter span {
  color: #fff;
  font-size: 15px;
}

.gc-dots {
  display: flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 60%;
  justify-content: flex-end;
}

.gc-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s, width 0.25s;
  flex-shrink: 0;
}

.gc-dot.active {
  background: #fff;
  width: 20px;
  border-radius: 3px;
  transform: none;
}

.gc-dot:hover:not(.active) {
  background: rgba(255,255,255,0.65);
  transform: scale(1.3);
}

/* Fade edges — re-enable as subtle top/bottom for depth */
.gallery-col::before,
.gallery-col::after { display: none; }

/* FIX #3: accent line now lives OUTSIDE gallery-col so overflow:hidden doesn't clip it */
.gallery-wrapper {
  position: relative;
  /* Extra left padding so the accent line has room */
  padding-left: 10px;
}

.gallery-accent-line {
  position: absolute;
  top: 50%;
  left: -6px;
  transform: translateY(-50%);
  width: 6px;
  height: 130px;
  background: linear-gradient(to bottom, var(--red), var(--blue));
  border-radius: 6px;
  z-index: 4;
}

/* Pulsing years badge */
.gallery-badge {
  position: absolute;
  bottom: 64px;
  right: 20px;
  z-index: 11;
  background: var(--red);
  color: #fff;
  padding: 16px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 32px rgba(224,0,15,0.4);
  animation: badgePulse 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1);    box-shadow: 0 10px 32px rgba(224,0,15,0.35); }
  50%       { transform: scale(1.05); box-shadow: 0 14px 42px rgba(224,0,15,0.5); }
}

.gallery-badge .gb-num { font-size: 36px; font-weight: 900; line-height: 1; }
.gallery-badge .gb-lbl { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.88; margin-top: 4px; }

/* Decorative floating dots — sits over the slides */
.float-dots {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 8;
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 5px;
  pointer-events: none;
}

.float-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.2;
}

.float-dots span:nth-child(4n+1) { background: var(--red); opacity: 0.35; }

/* ---- Right: content ---- */
.about-right { display: flex; flex-direction: column; gap: 20px; }

.about-lead {
  font-size: 16px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.6;
  margin: 18px 0 14px;
}

.about-body { font-size: 14px; font-weight: 500; color: var(--gray-700); line-height: 1.8; }

/* Square pillar cards */
.pillars-sq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* 3rd pillar (Empowerment) spans both columns */
.pillar-sq-full { grid-column: 1 / -1; max-height: 148px; }

.pillar-sq {
  position: relative;
  height: 148px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}

.pillar-sq img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pillar-sq:hover img { transform: scale(1.09); }

.pillar-sq-ov {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s;
}

.pillar-sq:nth-child(1) .pillar-sq-ov { background: linear-gradient(135deg, rgba(4,37,185,0.82) 0%, rgba(4,37,185,0.42) 100%); }
.pillar-sq:nth-child(2) .pillar-sq-ov { background: linear-gradient(135deg, rgba(224,0,15,0.82) 0%, rgba(224,0,15,0.42) 100%); }
.pillar-sq:nth-child(3) .pillar-sq-ov { background: linear-gradient(135deg, rgba(3,24,144,0.82) 0%, rgba(3,24,144,0.42) 100%); }
.pillar-sq:nth-child(4) .pillar-sq-ov { background: linear-gradient(135deg, rgba(140,0,8,0.82) 0%, rgba(140,0,8,0.42) 100%); }

.pillar-sq:hover .pillar-sq-ov { opacity: 0.95; }

.pillar-sq::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  z-index: 3;
}

.pillar-sq:nth-child(1)::before { background: #4a6fff; }
.pillar-sq:nth-child(2)::before { background: #ff3344; }
.pillar-sq:nth-child(3)::before { background: var(--blue); }
.pillar-sq:nth-child(4)::before { background: var(--red); }

.pillar-sq-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 14px 14px 14px 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.pillar-sq-title { font-size: 14px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.pillar-sq-sub   { font-size: 11px; font-weight: 500; color: rgba(255,255,255,0.75); }

.pillar-sq-arr {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 3;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  transform: translateY(-4px);
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
}

.pillar-sq:hover .pillar-sq-arr { transform: translateY(0); opacity: 1; }


/* ============================================================
   11. STATS BAND
   ============================================================ */
.stats-band {
  background: var(--dark);
  padding: 60px var(--pad);
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(224,0,15,0.1)  0%, transparent 45%),
    radial-gradient(circle at 90% 50%, rgba(4,37,185,0.16)  0%, transparent 45%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.stat-item {
  text-align: center;
  padding: 20px 24px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-size: 50px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.stat-num sup { font-size: 22px; color: var(--red); vertical-align: super; }
.stat-num sub { font-size: 18px; color: rgba(255,255,255,0.5); font-weight: 700; }

.stat-lbl { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-top: 10px; }
.stat-sub { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.25); margin-top: 4px; }


/* ============================================================
   12. WHAT WE DO – SERVICES GRID
   ============================================================ */
.services-hdr { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px; flex-wrap: wrap; gap: 16px; }

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

/* 4-box variant: 2x2 layout */
.services-grid-4 { grid-template-columns: repeat(2, 1fr); }

.svc-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
  background: #fff;
}

.svc-card:hover { transform: translateY(-6px); box-shadow: 0 20px 48px rgba(4,37,185,0.1); }

.svc-img { height: 190px; overflow: hidden; position: relative; }
.svc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.svc-card:hover .svc-img img { transform: scale(1.05); }

.svc-img-ov {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 56px;
  background: linear-gradient(to top, rgba(4,10,60,0.45), transparent);
}

.svc-body { padding: 20px 22px 24px; }
.svc-body h3 { font-size: 16px; font-weight: 800; color: var(--dark); margin-bottom: 9px; }
.svc-body p  { font-size: 13px; font-weight: 500; color: var(--gray-700); line-height: 1.7; margin-bottom: 14px; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  transition: gap 0.2s;
}

.svc-link:hover { gap: 10px; }
.svc-link::after { content: '→'; }


/* ============================================================
   13. BOARD OF DIRECTORS
   ============================================================ */
.board-hdr { text-align: center; margin-bottom: 52px; }
.board-hdr .stag { justify-content: center; }
.board-hdr .stag::before { display: none; }

.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.board-row2 { display: flex; justify-content: center; gap: 24px; margin-top: 24px; flex-wrap: wrap; }
.board-row2 .bcard { width: calc(25% - 18px); min-width: 200px; }

.bcard {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.bcard:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(4,37,185,0.11); }

.bcard-img { height: 220px; overflow: hidden; position: relative; }
.bcard-img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; transition: transform 0.4s; }
.bcard:hover .bcard-img img { transform: scale(1.04); }

.bcard-img-ov {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 70px;
  background: linear-gradient(to top, rgba(4,10,60,0.45), transparent);
}

.bcard-body { padding: 16px 18px 20px; text-align: center; }
.bcard-role   { font-size: 10.5px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.bcard-name   { font-size: 15px;   font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.bcard-region { font-size: 12px;   font-weight: 500; color: var(--gray-400); }

.bcard-links { display: flex; gap: 8px; justify-content: center; margin-top: 12px; }

.bcard-links a {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  transition: background 0.2s, color 0.2s;
}

.bcard-links a:hover { background: var(--blue); color: #fff; }


/* ============================================================
   14. EVENTS & PUBLICATIONS
   ============================================================ */
.events-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 16px;
}

.tabs { display: flex; gap: 4px; background: var(--gray-200); padding: 4px; border-radius: 4px; }

.tab-btn {
  padding: 8px 18px;
  border-radius: 2px;
  font-family: 'Raleway', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
}

.tab-btn.active { background: #fff; color: var(--blue); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }

.events-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: auto auto; gap: 20px; }

.ecard {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.ecard:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.09); }

.ecard.feat { grid-row: span 2; display: flex; flex-direction: column; }

.ecard-img { overflow: hidden; flex-shrink: 0; }
.ecard-img img {
    width: 100%;
    height: 497px;
    object-fit: contain;
    transition: transform 0.4s;
    display: block;
}
.ecard.feat .ecard-img img {
    height: 470px;
    object-fit: contain;
}
.ecard:hover .ecard-img img { transform: scale(1.04); }

.ecard-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.emeta { display: flex; align-items: center; gap: 10px; margin-bottom: 9px; flex-wrap: wrap; }

.ecat { font-size: 10px; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px; border-radius: 2px; }

.cat-ev  { background: var(--blue-light); color: var(--blue); }
.cat-pub { background: var(--red-light);  color: var(--red); }
.cat-rep { background: #f0fff4;           color: #00a645; }

.edate { font-size: 11px; font-weight: 600; color: var(--gray-400); }

.ecard-body h3 { font-size: 14.5px; font-weight: 800; color: var(--dark); line-height: 1.4; margin-bottom: 8px; }
.ecard.feat .ecard-body h3 { font-size: 20px; }
.ecard-body p  { font-size: 12.5px; font-weight: 500; color: var(--gray-700); line-height: 1.65; flex: 1; }

.efoot { margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: space-between; }
.eloc  { font-size: 11px; font-weight: 600; color: var(--gray-400); }

.earr {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.ecard:hover .earr { background: var(--blue); color: #fff; }


/* ============================================================
   15. PARTNERS
   ============================================================ */
.partners-sec {
  background: #fff;
  padding: 50px var(--pad);
  border-top: 1px solid var(--gray-200);
}

.partners-lbl { text-align: center; font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 34px; }

.partners-row { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }

.plogo { padding: 12px 28px; border-right: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; opacity: 0.38; transition: opacity 0.2s; cursor: pointer; }
.plogo:last-child { border-right: none; }
.plogo:hover { opacity: 0.85; }
.plogo-t { font-size: 15px; font-weight: 900; color: var(--dark); white-space: nowrap; letter-spacing: -0.02em; }


/* ============================================================
   16. CTA BAND
   ============================================================ */
.cta-wrap { padding: 48px var(--pad); background: var(--gray-50); }

.cta-box {
  background: linear-gradient(135deg, var(--blue) 0%, #031068 55%, var(--dark) 100%);
  border-radius: 12px;
  padding: 60px 56px;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 50%, rgba(224,0,15,0.2) 0%, transparent 55%);
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-text h2 { font-size: clamp(24px, 2.5vw, 32px); font-weight: 900; color: #fff; letter-spacing: -0.02em; margin-bottom: 10px; line-height: 1.2; }
.cta-text p  { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.6); }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }


/* ============================================================
   17. CONTACT & SUBSCRIBE FORM
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.35fr; gap: 60px; align-items: start; }

.contact-info h2 { font-size: clamp(26px, 2.5vw, 34px); font-weight: 900; color: var(--dark); letter-spacing: -0.02em; margin: 14px 0 16px; }
.contact-info p  { font-size: 14.5px; font-weight: 500; color: var(--gray-700); line-height: 1.75; margin-bottom: 32px; }

.cdetails { display: flex; flex-direction: column; gap: 16px; }
.cdetail  { display: flex; align-items: flex-start; gap: 14px; }

.cicon { width: 44px; height: 44px; border-radius: 6px; flex-shrink: 0; overflow: hidden; }
.cicon img { width: 100%; height: 100%; object-fit: cover; }

.ctext .cl { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gray-400); }
.ctext .cv { font-size: 13.5px; font-weight: 700; color: var(--dark); margin-top: 2px; }

/* Subscribe form */
.subscribe-form-wrap {
  background: #fff;
  border-radius: 10px;
  padding: 36px 36px 38px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  border: 1px solid var(--gray-200);
}

.sform-title { font-size: 20px; font-weight: 800; color: var(--dark); margin-bottom: 5px; }
.sform-sub   { font-size: 13px; font-weight: 500; color: var(--gray-400); margin-bottom: 30px; }

.sform-row { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; margin-bottom: 24px; }

.sform-group { display: flex; flex-direction: column; }

.sform-group label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 8px;
}

.sform-group input,
.sform-group select {
  width: 100%;
  padding: 11px 0;
  border: none;
  border-bottom: 1.5px solid var(--gray-200);
  border-radius: 0;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  outline: none;
  transition: border-color 0.2s;
}

.sform-group input:focus,
.sform-group select:focus { border-bottom-color: var(--blue); }

.sform-group input::placeholder { color: var(--gray-400); font-size: 13.5px; }

/* Phone field */
.phone-wrap {
  display: flex;
  align-items: center;
  border-bottom: 1.5px solid var(--gray-200);
  transition: border-color 0.2s;
}

.phone-wrap:focus-within { border-bottom-color: var(--blue); }

.phone-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 11px 8px 11px 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
}

.flag-ic {
  width: 22px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.fs { width: 100%; flex: 1; }
.fs.sa { background: #FF9933; }
.fs.wh { background: #fff; position: relative; }
.fs.gr { background: #138808; }

.chakra {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid #000080;
}

.ph-caret { font-size: 10px; color: var(--gray-400); }
.ph-code  { font-size: 14px; font-weight: 700; color: var(--dark); margin-right: 4px; }

.phone-wrap input {
  border: none;
  padding: 11px 0;
  flex: 1;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: transparent;
  outline: none;
  min-width: 0;
}

.phone-wrap input::placeholder { color: var(--gray-400); font-size: 13.5px; }

.sform-footer { display: flex; justify-content: center; margin-top: 30px; }

.subscribe-btn {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 15px 56px;
  font-family: 'Raleway', sans-serif;
  font-size: 13.5px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 6px 24px rgba(224,0,15,0.3);
}

.subscribe-btn:hover { background: #c2000d; transform: translateY(-2px); box-shadow: 0 10px 32px rgba(224,0,15,0.45); }


/* ============================================================
   18. FOOTER
   ============================================================ */
footer { background: #060a1a; position: relative; overflow: hidden; }

.footer-map { position: absolute; inset: 0; pointer-events: none; }
.footer-map svg { width: 100%; height: 100%; }

.footer-red-band {
  background: var(--red);
  padding: 15px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-red-band p { font-size: 13px; font-weight: 700; color: #fff; }

.footer-red-band a {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.footer-red-band a::after { content: '→'; }

.footer-body { padding: 60px var(--pad) 44px; position: relative; z-index: 2; }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; }

.f-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.f-logo img { height: 60px; width: auto; }
.f-logo-t .brand { font-size: 14px; font-weight: 900; color: var(--red); letter-spacing: 0.08em; }
.f-logo-t .full  { font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.35); max-width: 190px; line-height: 1.4; }

.f-desc { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.38); line-height: 1.8; margin-bottom: 22px; }

.f-social { display: flex; gap: 10px; }

.f-social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: none;
  color: rgba(255,255,255,0.45);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  font-family: 'Raleway', sans-serif;
}

.f-social-btn:hover { background: var(--red); color: #fff; }

.f-col h4 { font-size: 11px; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; margin-bottom: 18px; }
.f-col h4::after { content: ''; display: block; width: 24px; height: 2px; background: var(--red); margin-top: 8px; }

.f-col ul { display: flex; flex-direction: column; gap: 10px; }
.f-col ul li a { font-size: 12.5px; font-weight: 500; color: rgba(255,255,255,0.38); transition: color 0.2s, padding-left 0.15s; display: block; }
.f-col ul li a:hover { color: rgba(255,255,255,0.85); padding-left: 5px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
}

.footer-bottom-t { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.2); }
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom-links a { font-size: 11.5px; font-weight: 600; color: rgba(255,255,255,0.2); transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }


/* ============================================================
   19. SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }


/* ============================================================
   20. RESPONSIVE — 1200px (large tablet landscape)
   ============================================================ */
@media (max-width: 1200px) {
  :root { --pad: 40px; }

  .nav-logo-text .full { max-width: 180px; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 32px; }
}


/* ============================================================
   21. RESPONSIVE — 1024px (tablet landscape / events grid)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --pad: 32px; }

  .board-grid { grid-template-columns: repeat(3, 1fr); }

  /* FIX #7: events grid becomes 2-col at this breakpoint */
  .events-grid { grid-template-columns: 1fr 1fr; }
  .ecard.feat  { grid-row: span 1; grid-column: span 2; }

  .cta-box { padding: 48px 40px; }
}


/* ============================================================
   22. RESPONSIVE — 900px (tablet portrait)
   ============================================================ */
@media (max-width: 900px) {
  :root { --pad: 24px; }

  /* FIX #1: Show hamburger, hide desktop nav + CTA */
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .mobile-nav-overlay { display: block; }
  .nav-menu, .nav-cta { display: none; }

  /* FIX #6: Hide network text on topbar, keep only links */
  .topbar-network { display: none; }
  .topbar-inner { justify-content: flex-end; }

  /* Two-column grids */
  .about-new-grid { grid-template-columns: 1fr; gap: 40px; }
  .gallery-col { min-height: 0; height: 380px; }
  .gc-next { right: 68px; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  /* 4-box grid stays 2-col at 900px — already correct */
  .banner-strip-inner { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .board-grid { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer: 2-col */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* CTA */
  .cta-inner { flex-direction: column; text-align: center; align-items: center; }
  .cta-btns { justify-content: center; }
  .cta-box { padding: 40px 32px; }

  /* Board row2 */
  .board-row2 .bcard { width: calc(50% - 12px); min-width: 0; }
}


/* ============================================================
   23. RESPONSIVE — 640px (large mobile)
   ============================================================ */
@media (max-width: 640px) {
  :root { --pad: 16px; }

  /* Hero */
  .hero-outer { padding: 16px var(--pad) 24px; }
  .hero-slider-wrap { height: 460px; }
  .hero-content { padding: 0 24px; }
  .hero-content p { font-size: 13.5px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { padding: 11px 18px; font-size: 11px; }

  /* Slider controls: move to bottom center */
  .slide-counter { display: none; }
  .slider-controls { right: auto; left: 50%; transform: translateX(-50%); bottom: 18px; }

  /* Banner: single column */
  .banner-strip-inner { grid-template-columns: 1fr; }

  /* Gallery slider on small screens */
  .gallery-col { min-height: 0; height: 300px; }
  .gc-arrow { width: 36px; height: 36px; font-size: 14px; }
  .gc-next { right: 60px; }
  .gallery-badge { bottom: 60px; right: 14px; padding: 12px 14px; }
  .gallery-badge .gb-num { font-size: 26px; }
  .gc-bar { padding: 22px 14px 14px; }

  /* Services: single column on small mobile */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid-4 { grid-template-columns: 1fr; }

  /* Events: single column */
  .events-grid { grid-template-columns: 1fr; }
  .ecard.feat { grid-column: span 1; }

  /* Board */
  .board-grid { grid-template-columns: 1fr 1fr; }
  .board-row2 .bcard { width: calc(50% - 12px); }
  .bcard-img { height: 180px; }

  /* Stats */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 38px; }

  /* Subscribe form: 1 col */
  .sform-row { grid-template-columns: 1fr; gap: 16px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-red-band { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Partners: wrap with smaller padding */
  .plogo { padding: 10px 20px; }
}


/* ============================================================
   24. RESPONSIVE — 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  /* Hero */
  .hero-slider-wrap { height: 400px; border-radius: 8px; }
  .hero-tag { font-size: 9px; padding: 4px 10px; }
  .hero-content h1 { font-size: 22px; }
  .hero-content p  { display: none; }

  /* Gallery: fixed small height on very small screens */
  .gallery-col { height: 260px; }

  /* Board: single column on very small screens */
  .board-grid { grid-template-columns: 1fr; }
  .board-row2 .bcard { width: 100%; }
  .board-row2 { flex-direction: column; align-items: center; }

  /* Stats: full width each */
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 16px 12px; }
  .stat-num { font-size: 32px; }
  .stat-num sup { font-size: 16px; }

  /* CTA FIX #9 */
  .cta-box { padding: 32px 20px; }
  .cta-btns .btn { width: 100%; justify-content: center; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-bottom-links { gap: 14px; }
}

/* ============================================================
   NEW SECTIONS — ADDED FOR CONTENT UPDATE
   ============================================================ */

/* ── NAVBAR: logo only, slightly larger ── */
.nav-logo > img { height: 62px; width: auto; object-fit: contain; }
.nav-logo-text { display: none; }

/* ── ABOUT GOPIO section ── */
.about-gopio-inner { max-width: 100%; }

.about-gopio-header {
  text-align: center;
  margin-bottom: 52px;
}

.about-gopio-header .stag {
  justify-content: center;
}

.about-gopio-header .stitle { display: block; }
.about-gopio-header .sdesc { max-width: 820px; margin-left: auto; margin-right: auto; text-align: left; }

.pillars-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* About GOPIO uses 3 pillars only */
.pillars-3-col {
  grid-template-columns: repeat(3, 1fr);
}

.p4-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.p4-card:hover { transform: translateY(-5px); box-shadow: 0 16px 44px rgba(4,37,185,0.1); }

.p4-icon-wrap {
  height: 160px;
  overflow: hidden;
}

.p4-icon-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.p4-card:hover .p4-icon-wrap img { transform: scale(1.05); }

.p4-body { padding: 20px 20px 24px; }

.p4-body h3 { font-size: 17px; font-weight: 800; color: var(--dark); margin-bottom: 6px; }

.p4-sub {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.p4-desc { font-size: 13px; font-weight: 500; color: var(--gray-700); line-height: 1.7; }

/* ── VISION & MISSION ── */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 0;
}

.vm-card {
  border-radius: 10px;
  padding: 36px 36px 40px;
  position: relative;
}

.vm-vision {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
}

.vm-mission {
  background: var(--red-light);
  border-left: 4px solid var(--red);
}

.vm-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--blue);
}

.vm-mission .vm-icon { color: var(--red); }

.vm-text {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.8;
}

.vm-list {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.vm-list li {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.vm-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: 700;
}

/* Unique Strength */
.unique-strength { padding: 48px 0 0; }

.us-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}

.us-blockquote {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-style: normal;
  padding: 32px 36px;
  background: linear-gradient(135deg, var(--blue) 0%, #031068 100%);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(4,37,185,0.2);
  position: relative;
}

.us-quote-mark {
  font-size: 40px;
  line-height: 0;
  vertical-align: -12px;
  color: rgba(255,255,255,0.4);
  font-family: Georgia, serif;
  margin: 0 4px;
}

/* ── ABOUT GOPIO DELHI/NCR ── */
.delhi-inner { }

.delhi-header { text-align: center; margin-bottom: 48px; }
.delhi-header .sdesc { max-width: 800px; margin-left: auto; margin-right: auto; text-align: left; }

.role-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 52px;
}

.role-card {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  transition: transform 0.25s, box-shadow 0.25s;
}

.role-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(4,37,185,0.1); }

.role-card:nth-child(2) { border-top-color: var(--red); }
.role-card:nth-child(3) { border-top-color: var(--blue-dark); }
.role-card:nth-child(4) { border-top-color: var(--red); }

.role-icon { font-size: 30px; margin-bottom: 14px; display: block; }

.role-card h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.role-card p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.7;
}

/* Flagship Banner */
.flagship-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #031068 55%, var(--dark) 100%);
  border-radius: 14px;
  padding: 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 380px;
  min-height: 280px;
  position: relative;
  box-shadow: 0 16px 48px rgba(4,37,185,0.2);
}

.flagship-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(224,0,15,0.18) 0%, transparent 55%);
}

.flagship-content {
  padding: 40px 44px;
  position: relative;
  z-index: 1;
}

.flagship-content .stag { color: rgba(255,255,255,0.6); }
.flagship-content .stag::before { background: rgba(255,255,255,0.3); }

.flagship-content h3 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.flagship-content p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 540px;
}

.flagship-launch {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.fl-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.fl-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.fl-value {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

.flagship-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* ── MAURITIUS SECTION ── */
.mauritius-sec {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b6b 50%, #1a0030 100%);
  position: relative;
  overflow: hidden;
}

.mauritius-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 60%, rgba(224,0,15,0.15) 0%, transparent 50%);
}

.mauritius-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.mauritius-inner .stag { color: rgba(255,255,255,0.5); }
.mauritius-inner .stag::before { background: rgba(255,255,255,0.3); }
.mauritius-inner .stitle em { -webkit-text-fill-color: unset; background: none; color: rgba(255,255,255,0.6); }

.mauritius-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.ms-item { }

.ms-num {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
}

.ms-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.5;
}

.mauritius-img-col { position: relative; }

.mauritius-hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.mauritius-badge {
  position: absolute;
  bottom: -20px;
  left: 24px;
  background: var(--red);
  color: #fff;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(224,0,15,0.35);
}

.mb-date { font-size: 15px; font-weight: 900; }
.mb-venue { font-size: 11px; font-weight: 600; opacity: 0.85; margin-top: 3px; }

/* ── CULTURAL EXCHANGE ── */
.ce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: stretch;
}

.ce-img-col {
  display: flex;
}

.ce-main-img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(4,37,185,0.12);
  display: block;
}

.ce-what-list {
  margin-top: 24px;
  background: var(--blue-light);
  border-radius: 8px;
  padding: 20px 24px;
  border-left: 4px solid var(--blue);
}

.ce-what-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}

.ce-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ce-list li {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.ce-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}

.ce-outcome {
  margin-top: 20px;
  padding: 20px 24px;
  background: var(--gray-50);
  border-radius: 8px;
  border-left: 4px solid var(--red);
}

.ce-outcome-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

/* ── ECONOMIC EMPOWERMENT ── */
.ee-inner { }

.ee-header { text-align: center; margin-bottom: 0; }
.ee-header .sdesc { max-width: 700px; margin-left: auto; margin-right: auto; text-align: left; }

.ee-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 0;
}

.ee-col {
  background: #fff;
  border-radius: 10px;
  padding: 28px 24px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.ee-col-icon {
  font-size: 24px;
  font-weight: 900;
  color: var(--red);
  margin-bottom: 14px;
}

.ee-col h3 {
  font-size: 16px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.ee-col p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.7;
}

.ee-list {
  list-style: none;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ee-list li {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.ee-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

/* Advisory team grid */
.ee-team-header .stag { justify-content: center; }
.ee-team-header .stag::before { display: none; }

.ee-team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}

.team-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(4,37,185,0.1); }

.team-img {
  height: 340px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.4s;
}

.team-card:hover .team-img img { transform: scale(1.04); }

.team-body { padding: 16px 16px 18px; }

.team-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.team-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 3px;
}

.team-org {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-400);
  margin-bottom: 8px;
  line-height: 1.4;
}

.team-contacts {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 8px;
}

.team-contacts span,
.team-contacts a {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gray-400);
  transition: color 0.2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.team-contacts a:hover { color: var(--blue); }

/* ── LEADERSHIP SECTION ── */
.leadership-inner {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 64px;
  align-items: start;
}

.leadership-img-col {
  position: relative;
  /* Ensure bottom badge doesn't bleed into next section */
  padding-bottom: 28px;
}

.leadership-img-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(4,37,185,0.15);
}

.leadership-name-badge {
  position: absolute;
  bottom: 4px;          /* inside padding-bottom, not overflowing */
  left: 20px;
  right: 20px;
  background: var(--red);
  color: #fff;
  padding: 16px 20px;
  border-radius: 8px;
  box-shadow: 0 10px 32px rgba(224,0,15,0.3);
}

.lnb-name { font-size: 17px; font-weight: 900; }
.lnb-role { font-size: 11px; font-weight: 600; opacity: 0.85; margin-top: 3px; letter-spacing: 0.04em; }

.leadership-role-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.6;
  margin-top: 12px;
}

.leadership-contact-box {
  margin-top: 32px;
  background: var(--gray-50);
  border-radius: 10px;
  padding: 28px 32px;
  border: 1px solid var(--gray-200);
}

.lcb-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}

.lcb-grid { display: flex; flex-direction: column; gap: 14px; }

.lcb-item { display: flex; gap: 14px; align-items: flex-start; }

.lcb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
  min-width: 70px;
  padding-top: 2px;
  flex-shrink: 0;
}

.lcb-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

.lcb-value a { color: var(--blue); transition: color 0.2s; }
.lcb-value a:hover { color: var(--blue-dark); text-decoration: underline; }

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

@media (max-width: 1200px) {
  .pillars-4-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-3-col { grid-template-columns: repeat(2, 1fr); max-width: 100%; }
  .role-grid { grid-template-columns: repeat(2, 1fr); }
  .ee-team-grid { grid-template-columns: repeat(4, 1fr); }
  .leadership-inner { grid-template-columns: 300px 1fr; gap: 40px; }
}

@media (max-width: 1024px) {
  .flagship-banner { grid-template-columns: 1fr; }
  .flagship-img { display: none; }
  .mauritius-inner { grid-template-columns: 1fr; gap: 40px; }
  .mauritius-img-col { order: -1; }
  .mauritius-hero-img { height: 280px; }
  .mauritius-badge { bottom: 16px; }
  .ce-grid { grid-template-columns: 1fr; gap: 40px; }
  .ce-main-img { height: 320px; }
  .us-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 900px) {
  .pillars-4-grid { grid-template-columns: 1fr 1fr; }
  .pillars-3-col { grid-template-columns: 1fr 1fr; }
  .vm-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .ee-cols { grid-template-columns: 1fr; }
  .ee-team-grid { grid-template-columns: repeat(3, 1fr); }
  .leadership-inner { grid-template-columns: 1fr; }
  .leadership-img-col img { height: 340px; }
  .flagship-banner { min-height: auto; }
  .flagship-content { padding: 28px 24px; }
  .mauritius-stats { gap: 20px; }
}

@media (max-width: 640px) {
  .pillars-4-grid { grid-template-columns: 1fr; }
  .pillars-3-col { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .ee-team-grid { grid-template-columns: 1fr 1fr; }
  .leadership-inner { grid-template-columns: 1fr; }
  .us-blockquote { font-size: 18px; padding: 24px 22px; }
  .vm-card { padding: 24px 20px; }
  .flagship-launch { gap: 14px; }
}

@media (max-width: 480px) {
  .ee-team-grid { grid-template-columns: 1fr; }
  .mauritius-stats { flex-direction: column; gap: 16px; }
  .flagship-content { padding: 22px 18px; }
}

/* ============================================================
   DESIGN ENHANCEMENTS – All additions below keep the original
   responsive rules intact and only extend them.
   ============================================================ */

/* ── VISION & MISSION – Hover animation ── */
.vm-card {
  border-radius: 14px;
  padding: 40px 40px 44px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
  cursor: default;
}

.vm-vision {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  box-shadow: 0 4px 20px rgba(4,37,185,0.07);
}

.vm-mission {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  box-shadow: 0 4px 20px rgba(224,0,15,0.07);
}

/* Glow layer */
.vm-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.vm-vision::before { background: linear-gradient(135deg,rgba(4,37,185,0.06) 0%,transparent 60%); }
.vm-mission::before { background: linear-gradient(135deg,rgba(224,0,15,0.06) 0%,transparent 60%); }

/* Decorative circle */
.vm-card::after {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 160px; height: 160px;
  border-radius: 50%;
  opacity: 0.04;
  transition: transform 0.5s ease, opacity 0.4s ease;
  pointer-events: none;
}
.vm-vision::after { background: var(--blue); }
.vm-mission::after { background: var(--red); }

.vm-card:hover { transform: translateY(-6px) scale(1.01); }
.vm-vision:hover { box-shadow: 0 20px 56px rgba(4,37,185,0.15); }
.vm-mission:hover { box-shadow: 0 20px 56px rgba(224,0,15,0.14); }
.vm-card:hover::before { opacity: 1; }
.vm-card:hover::after { transform: scale(1.5); opacity: 0.08; }

.vm-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--blue);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.vm-mission .vm-icon { color: var(--red); }
.vm-card:hover .vm-icon { transform: rotate(45deg) scale(1.2); }

.vm-text {
  position: relative; z-index: 1;
  font-size: 14.5px; font-weight: 500;
  color: var(--gray-700); line-height: 1.8;
}

.vm-list {
  list-style: none; margin-top: 14px;
  display: flex; flex-direction: column; gap: 8px;
  position: relative; z-index: 1;
}
.vm-list li {
  font-size: 14px; font-weight: 500;
  color: var(--gray-700); padding-left: 20px;
  position: relative; line-height: 1.6;
  transition: padding-left 0.2s ease;
}
.vm-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--red); font-weight: 700;
  transition: left 0.2s ease;
}
.vm-card:hover .vm-list li { padding-left: 26px; }
.vm-card:hover .vm-list li::before { left: 4px; }

/* Stag hover letter-spacing */
.vm-card .stag { position: relative; z-index: 1; transition: letter-spacing 0.3s ease; }
.vm-card:hover .stag { letter-spacing: 0.14em; }

/* ── ECONOMIC EMPOWERMENT COLUMNS ── */
.ee-col {
  background: #fff;
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.35s ease;
}
.ee-col:nth-child(1) { border-top: 3px solid var(--red); }
.ee-col:nth-child(2) { border-top: 3px solid var(--blue); }
.ee-col:nth-child(3) { border-top: 3px solid var(--blue-dark); }

.ee-col::before {
  content: ''; position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.4s; border-radius: 14px;
}
.ee-col:nth-child(1)::before { background: linear-gradient(160deg,rgba(224,0,15,0.04) 0%,transparent 60%); }
.ee-col:nth-child(2)::before { background: linear-gradient(160deg,rgba(4,37,185,0.04) 0%,transparent 60%); }
.ee-col:nth-child(3)::before { background: linear-gradient(160deg,rgba(3,24,144,0.04) 0%,transparent 60%); }

.ee-col::after {
  content: ''; position: absolute;
  top: -20px; right: -20px;
  width: 100px; height: 100px;
  border-radius: 50%; opacity: 0.04;
  transition: transform 0.5s ease, opacity 0.4s ease;
}
.ee-col:nth-child(1)::after { background: var(--red); }
.ee-col:nth-child(2)::after { background: var(--blue); }
.ee-col:nth-child(3)::after { background: var(--blue-dark); }

.ee-col:hover { transform: translateY(-8px); }
.ee-col:nth-child(1):hover { box-shadow: 0 20px 52px rgba(224,0,15,0.13); }
.ee-col:nth-child(2):hover { box-shadow: 0 20px 52px rgba(4,37,185,0.13); }
.ee-col:nth-child(3):hover { box-shadow: 0 20px 52px rgba(3,24,144,0.12); }
.ee-col:hover::before { opacity: 1; }
.ee-col:hover::after { transform: scale(2); opacity: 0.08; }

.ee-col-icon {
  font-size: 18px; font-weight: 900;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px; margin-bottom: 18px;
  position: relative; z-index: 1;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.ee-col:nth-child(1) .ee-col-icon { background: rgba(224,0,15,0.1); color: var(--red); }
.ee-col:nth-child(2) .ee-col-icon { background: rgba(4,37,185,0.1); color: var(--blue); }
.ee-col:nth-child(3) .ee-col-icon { background: rgba(3,24,144,0.1); color: var(--blue-dark); }
.ee-col:hover .ee-col-icon { transform: scale(1.15) rotate(-5deg); }

.ee-col h3 {
  font-size: 17px; font-weight: 800;
  color: var(--dark); margin-bottom: 12px;
  position: relative; z-index: 1;
  transition: color 0.25s;
}
.ee-col:nth-child(1):hover h3 { color: var(--red); }
.ee-col:nth-child(2):hover h3 { color: var(--blue); }
.ee-col:nth-child(3):hover h3 { color: var(--blue-dark); }

.ee-col p {
  font-size: 13.5px; font-weight: 500;
  color: var(--gray-700); line-height: 1.7;
  position: relative; z-index: 1;
}
.ee-list {
  list-style: none; margin-top: 12px;
  display: flex; flex-direction: column; gap: 7px;
  position: relative; z-index: 1;
}
.ee-list li {
  font-size: 13px; font-weight: 500;
  color: var(--gray-700); padding-left: 18px;
  position: relative; line-height: 1.6;
  transition: padding-left 0.2s ease;
}
.ee-list li::before {
  content: '→'; position: absolute; left: 0;
  font-weight: 700; font-size: 12px;
  transition: left 0.2s ease;
}
.ee-col:nth-child(1) .ee-list li::before { color: var(--red); }
.ee-col:nth-child(2) .ee-list li::before { color: var(--blue); }
.ee-col:nth-child(3) .ee-list li::before { color: var(--blue-dark); }
.ee-col:hover .ee-list li { padding-left: 22px; }
.ee-col:hover .ee-list li::before { left: 4px; }

/* ── ECONOMIC EMPOWERMENT VISUAL BANNER ── */
.ee-visual-banner {
  background: linear-gradient(135deg, var(--blue) 0%, #031068 50%, var(--dark) 100%);
  border-radius: 16px;
  padding: 36px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 16px 48px rgba(4,37,185,0.2);
  position: relative; overflow: hidden;
}
.ee-visual-banner::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(224,0,15,0.08); pointer-events: none;
}
.ee-vb-left { display: flex; align-items: center; }
.ee-vb-stat { display: flex; flex-direction: column; align-items: center; padding: 0 24px; }
.ee-vb-num { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.ee-vb-num sup { font-size: 14px; font-weight: 800; vertical-align: super; }
.ee-vb-lbl { font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-top: 5px; text-align: center; }
.ee-vb-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.12); flex-shrink: 0; }
.ee-vb-center { display: flex; flex-direction: column; align-items: center; gap: 14px; }
.ee-vb-globe { width: 130px; height: 130px; }
.ee-vb-svg { width: 100%; height: 100%; animation: globeSpin 18s linear infinite; }
@keyframes globeSpin { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.ee-vb-tagline { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.55); text-align: center; }
.ee-vb-right { display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.ee-vb-pill { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); font-size: 12px; font-weight: 700; letter-spacing: 0.04em; padding: 7px 16px; border-radius: 40px; border: 1px solid rgba(255,255,255,0.12); transition: background 0.25s, transform 0.25s; white-space: nowrap; }
.ee-vb-pill:hover { background: rgba(255,255,255,0.18); transform: translateX(-4px); }
.ee-vb-pill-red { background: rgba(224,0,15,0.2); border-color: rgba(224,0,15,0.3); color: #ffaaad; }
.ee-vb-pill-red:hover { background: rgba(224,0,15,0.3); }

/* ── RESPONSIVE: new elements only ── */
/* These add rules for new elements only; original breakpoints remain intact */

@media (max-width: 1024px) {
  .ce-main-img { height: 340px; min-height: unset; }
  .ee-visual-banner { grid-template-columns: 1fr; gap: 28px; padding: 32px 28px; }
  .ee-vb-left { justify-content: center; }
  .ee-vb-right { align-items: center; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .ee-vb-pill:hover { transform: none; }
}

@media (max-width: 900px) {
  .vm-grid { grid-template-columns: 1fr; }
  .vm-card { padding: 28px 24px; }
  .ee-cols { grid-template-columns: 1fr; }
  .ee-team-grid { grid-template-columns: repeat(2, 1fr); }
  .pillars-4-grid { grid-template-columns: 1fr 1fr; }
  .role-grid { grid-template-columns: 1fr 1fr; }
  .leadership-inner { grid-template-columns: 1fr; }
  /* Centre the image column and give it full width on tablet */
  .leadership-img-col { max-width: 100%; margin: 0 auto; }
  .leadership-img-col img { height: 460px; }
}

@media (max-width: 640px) {
  .pillars-4-grid { grid-template-columns: 1fr; }
  .role-grid { grid-template-columns: 1fr; }
  .ee-team-grid { grid-template-columns: 1fr 1fr; }
  .vm-card { padding: 22px 18px; }
  .ee-visual-banner { padding: 24px 18px; }
  .ee-vb-left { flex-wrap: wrap; justify-content: center; gap: 0; }
  .ee-vb-stat { padding: 8px 14px; }
  .ee-vb-globe { width: 90px; height: 90px; }
  /* Leadership: full width image, taller on mobile for visual impact */
  .leadership-img-col { max-width: 100%; margin: 0; }
  .leadership-img-col img { height: 400px; border-radius: 10px; }
  .lnb-name { font-size: 15px; }
  .lnb-role { font-size: 10px; }
  .lcb-value { font-size: 13px; word-break: break-word; }
  .leadership-contact-box { padding: 20px 18px; }
}

@media (max-width: 480px) {
  .ee-team-grid { grid-template-columns: 1fr; }
  .ee-vb-left { flex-direction: column; }
  .ee-vb-divider { width: 40px; height: 1px; }
  .leadership-img-col img { height: 340px; }
  .leadership-name-badge { padding: 12px 16px; }
  .lcb-item { flex-direction: column; gap: 4px; }
  .lcb-label { min-width: unset; }
}


/* =====================================================
   BUSINESS PROPOSAL PAGE — PAGE-SPECIFIC STYLES
   (business-proposal.html)
   ===================================================== */

/* Page hero banner */
.bp-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b6b 55%, #1a0030 100%);
  padding: 56px var(--pad) 52px;
  position: relative;
  overflow: hidden;
}

.bp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 10% 60%, rgba(224,0,15,0.18) 0%, transparent 50%),
    radial-gradient(circle at 85% 30%, rgba(4,37,185,0.3)  0%, transparent 50%);
}

.bp-hero-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  gap: 32px;
}


.bp-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,0,15,0.2);
  border: 1px solid rgba(224,0,15,0.45);
  border-radius: 2px;
  padding: 4px 12px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8899;
  margin-bottom: 12px;
}

.bp-hero-text h1 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.bp-hero-text h1 span { color: var(--red); }

.bp-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}

.bp-hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 8px 16px;
  backdrop-filter: blur(8px);
}

.bp-hero-badge .icon { font-size: 18px; }

.bp-hero-badge .label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

.bp-hero-badge .value {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

/* Main form container */
.bp-main {
  background: var(--gray-50);
  padding: 52px var(--pad) 72px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 32px;
}

.breadcrumb a { color: var(--blue); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue-dark); }
.breadcrumb .sep { font-size: 10px; }

/* Form card */
.form-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 40px rgba(4,37,185,0.07);
  border: 1px solid var(--gray-200);
  overflow: hidden;
}

/* Form card header */
.form-card-header {
  background: linear-gradient(135deg, var(--red) 0%, #a8000b 100%);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.form-card-header img {
  height: 64px;
  width: auto;
  object-fit: contain;
}

.form-card-header-text .org {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.form-card-header-text .chapter {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  margin-top: 4px;
}

.form-card-header-text .event {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
}

/* Fee notice banner */
.fee-notice {
  background: #fffbf0;
  border-left: 4px solid #f0a500;
  padding: 16px 40px;
  font-size: 13.5px;
  font-weight: 600;
  color: #5a3e00;
  line-height: 1.6;
}

.fee-notice strong { color: #2a1a00; }

/* Form body */
.form-body { padding: 0 40px 40px; }

/* Section divider */
.form-section { margin-top: 36px; }

.form-section-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
}

.form-section-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 18px;
  background: var(--red);
  border-radius: 2px;
}

/* Form table */
.form-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.form-table tr { border-bottom: 1px solid var(--gray-200); }
.form-table tr:last-child { border-bottom: none; }

.ft-num {
  width: 36px;
  padding: 14px 10px 14px 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--red);
  vertical-align: top;
  padding-top: 18px;
  white-space: nowrap;
}

.ft-label {
  width: 220px;
  padding: 14px 16px 14px 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  vertical-align: top;
  padding-top: 18px;
  background: var(--gray-50);
  border-right: 1px solid var(--gray-200);
  border-left: 1px solid var(--gray-200);
}

.ft-label small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-400);
  margin-top: 3px;
  line-height: 1.4;
}

.ft-field {
  padding: 12px 16px;
  vertical-align: middle;
}

/* Base input */
.field-input {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  background: var(--gray-50);
  outline: none;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.field-input:focus {
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(4,37,185,0.08);
}

.field-input.error {
  border-color: var(--red);
  background: var(--red-light);
}

.field-input::placeholder { color: var(--gray-400); }

textarea.field-input {
  resize: vertical;
  min-height: 80px;
  line-height: 1.6;
}

/* Telephone field */
.tel-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tel-city { width: 130px; flex-shrink: 0; }

.tel-city label, .tel-main label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 5px;
}

.tel-sep {
  font-size: 18px;
  color: var(--gray-400);
  padding-top: 18px;
}

.tel-main { flex: 1; }

/* Checkbox options */
.check-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  user-select: none;
}

.check-item input[type="checkbox"],
.check-item input[type="radio"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
  cursor: pointer;
  flex-shrink: 0;
}

.check-item span {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--dark);
}

.check-item .extra {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red);
}

/* Stand options */
.stand-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.stand-info {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-700);
  font-style: italic;
}

/* Inner table for directors / travelers / products */
.inner-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.inner-table thead th {
  background: var(--blue);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 12px;
  text-align: left;
  border-right: 1px solid rgba(255,255,255,0.15);
}

.inner-table thead th:last-child { border-right: none; }
.inner-table tbody tr { border-bottom: 1px solid var(--gray-200); }
.inner-table tbody tr:last-child { border-bottom: none; }
.inner-table tbody tr:nth-child(odd) { background: var(--gray-50); }
.inner-table tbody tr:nth-child(even) { background: #fff; }

.inner-table td {
  padding: 8px 10px;
  vertical-align: middle;
}

.inner-table .field-input {
  padding: 8px 10px;
  font-size: 13px;
}

/* Row number badge */
.row-num {
  width: 28px;
  font-size: 11px;
  font-weight: 800;
  color: var(--gray-400);
  text-align: center;
}

/* Products HS code */
.hs-note {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Bank confirmation */
.bank-section {
  margin-top: 36px;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  padding: 24px 28px;
}

.bank-section-title {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bank-section-title::before {
  content: '';
  width: 4px; height: 16px;
  background: var(--blue);
  border-radius: 2px;
  display: block;
}

.bank-confirm-text {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 20px;
}

.bank-confirm-text strong { color: var(--dark); }

.bank-fields-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 16px;
}

.bank-field label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 7px;
}

/* Signature section */
.sig-section {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.sig-col label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-700);
  margin-bottom: 7px;
}

.sig-box {
  border: 1.5px dashed var(--gray-200);
  border-radius: 6px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-50);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

/* Form actions */
.form-actions {
  margin-top: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 2px solid var(--gray-200);
}

.form-actions-note {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--gray-400);
  max-width: 420px;
  line-height: 1.6;
}

.form-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.btn-submit {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 14px 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 18px rgba(224,0,15,0.3);
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-submit:hover {
  background: #c2000d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(224,0,15,0.4);
}

.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.btn-reset {
  background: transparent;
  color: var(--gray-700);
  border: 1.5px solid var(--gray-200);
  border-radius: 3px;
  padding: 14px 28px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-reset:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
  color: var(--dark);
}

/* Inline field error message */
.field-error {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--red);
  margin-top: 5px;
  display: none;
}

.field-error.show { display: block; }

/* Required star */
.req { color: var(--red); margin-left: 2px; }

/* Success overlay */
.success-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(4,10,60,0.65);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.success-overlay.show { display: flex; }

.success-box {
  background: #fff;
  border-radius: 16px;
  padding: 52px 56px;
  max-width: 520px;
  width: 90%;
  text-align: center;
  box-shadow: 0 32px 80px rgba(4,10,60,0.25);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes popIn {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1);   opacity: 1; }
}

.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00a645, #00cc55);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 36px;
  color: #fff;
  box-shadow: 0 12px 32px rgba(0,166,69,0.3);
}

.success-box h2 {
  font-size: 26px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.success-box p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 8px;
}

.success-ref {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 16px 0 28px;
}

.success-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Loading spinner */
.spinner {
  width: 18px; height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Print button */
.btn-print {
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-print:hover { background: var(--blue-dark); }

/* Honeypot field — hidden from real users, traps bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Submission error banner */
.submit-error-banner {
  background: #fff0f0;
  border: 1.5px solid var(--red);
  border-radius: 6px;
  padding: 14px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: #a00010;
  margin-top: 16px;
  display: none;
}

.submit-error-banner.show { display: block; }

/* ---- Business Proposal Responsive ---- */
@media (max-width: 768px) {
  .form-card-header { flex-direction: column; align-items: flex-start; padding: 22px 24px; }
  .form-body { padding: 0 20px 32px; }
  .fee-notice { padding: 14px 20px; font-size: 13px; }
  .ft-label { width: 150px; font-size: 12px; }
  .ft-num { width: 28px; }
  .inner-table { font-size: 12px; }
  .inner-table thead th { font-size: 10px; padding: 8px 8px; }
  .inner-table td { padding: 6px 6px; }
  .bank-fields-row { grid-template-columns: 1fr; }
  .sig-section { grid-template-columns: 1fr; }
  .form-actions { flex-direction: column; align-items: stretch; }
  .form-btns { flex-direction: column; }
  .btn-submit, .btn-reset { width: 100%; justify-content: center; }
  .tel-wrap { flex-direction: column; gap: 12px; }
  .tel-city { width: 100%; }
  .bp-hero-meta { gap: 10px; }
  .bp-hero { padding: 28px var(--pad) 24px; }
  .bp-hero-text h1 { font-size: clamp(18px, 5vw, 28px); }
  .success-box { padding: 36px 28px; }
  .table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  div#whoWeAreCarousel {
    height: 420px !important;
}
.gc-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}
}

@media (max-width: 520px) {
  .ft-label { width: 120px; }
  .check-group { gap: 12px; }
  /* Hero: row layout on mobile so logo + text fit together */
  .bp-hero { padding: 14px 16px 18px; }
  .bp-hero-inner { flex-direction: column; align-items: flex-start; gap: 0; }
  .bp-hero-tag { font-size: 9px; letter-spacing: 0.12em; padding: 3px 10px; margin-bottom: 6px; }
  .bp-hero-text h1 { font-size: 18px; margin-bottom: 6px; line-height: 1.2; }
  .bp-hero-meta { gap: 7px; margin-top: 8px; }
  .bp-hero-badge { padding: 6px 10px; gap: 6px; }
  .bp-hero-badge .icon { font-size: 14px; }
  .bp-hero-badge .label { font-size: 9px; }
  .bp-hero-badge .value { font-size: 11px; }
  .bp-countdown-wrap { margin-top: 10px; }
}

@media print {
  .topbar, .navbar, .mobile-nav, .mobile-nav-overlay,
  .breadcrumb, .form-actions, .success-overlay { display: none !important; }
  .bp-hero { padding: 20px; }
  .bp-main { padding: 0; background: #fff; }
  .form-card { box-shadow: none; border: 1px solid #ccc; }
  body { font-size: 12px; }
}


/* =====================================================
   CONTACT FORM (index.html) — VALIDATION & STATE STYLES
   ===================================================== */

/* Required star */
.sform-req { color: var(--red); margin-left: 2px; }

/* Error state on the underline input */
.sform-group input.sform-input-error {
  border-bottom-color: var(--red);
}

/* Error state on phone-wrap border */
.phone-wrap.sform-input-error {
  border-bottom-color: var(--red);
}

/* Inline field error message */
.sform-error {
  font-size: 11px;
  font-weight: 700;
  color: var(--red);
  margin-top: 5px;
  display: none;
  letter-spacing: 0.02em;
}
.sform-error.show { display: block; }

/* Submit error banner */
.sform-submit-error {
  background: #fff0f0;
  border: 1.5px solid var(--red);
  border-radius: 6px;
  padding: 12px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #a00010;
  margin-bottom: 8px;
  display: none;
}
.sform-submit-error.show { display: block; }

/* Loading spinner inside subscribe button */
.subscribe-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin-left: 10px;
  vertical-align: middle;
}

.subscribe-btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}


/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 0.25s ease,
              background 0.2s ease;
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.wa-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.6);
  background: #20ba5a;
  animation: none;
}

/* Subtle pulse to draw attention */
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,0.75), 0 0 0 8px rgba(37,211,102,0.12); }
}

/* WhatsApp SVG icon */
.wa-icon {
  width: 30px;
  height: 30px;
  fill: #ffffff;
  flex-shrink: 0;
}

/* Tooltip — appears on hover to the right of button */
.wa-tooltip {
  position: absolute;
  left: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  background: #1a1a2e;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.03em;
}

/* Tooltip arrow */
.wa-tooltip::before {
  content: '';
  position: absolute;
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-right-color: #1a1a2e;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

/* Mobile — smaller button, no tooltip */
@media (max-width: 768px) {
  .wa-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 16px;
    box-shadow: 0 3px 14px rgba(37,211,102,0.4);
  }
  .wa-icon {
    width: 26px;
    height: 26px;
  }
  .wa-tooltip {
    display: none;
  }
}

@media print {
  .wa-float { display: none !important; }
}


/* =====================================================
   WHO WE ARE SLIDER — TEXT OVERLAYS
   Premium caption layer on each slide
   ===================================================== */

/* Each overlay sits inside .gc-slide, above the image */
.gc-slide-overlay {
  position: absolute;
  bottom: 52px;        /* sits above gc-bar gradient */
  left: 0;
  right: 0;
  padding: 22px 20px 16px 22px;
  background: linear-gradient(
    to top,
    rgba(8, 12, 50, 0.88) 0%,
    rgba(8, 12, 50, 0.55) 55%,
    transparent 100%
  );
  z-index: 6;
  /* Animate in with the slide */
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.55s ease 0.15s, transform 0.55s ease 0.15s;
  pointer-events: none;
  /* Keep text away from the badge on the right */
  padding-right: 90px;
}

.gc-slide.active .gc-slide-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gc-slide-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.3;
  margin-bottom: 5px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.gc-slide-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

/* Move badge up slightly so it clears the overlay text */
.gallery-badge {
  bottom: 72px;
}

/* Mobile: simplify overlay */
@media (max-width: 768px) {
  .gc-slide-overlay {
    padding: 16px 14px 12px 14px;
    padding-right: 80px;
    bottom: 48px;
  }
  .gc-slide-heading { font-size: 13px; }
  .gc-slide-desc    { font-size: 11px; }
}

@media (max-width: 480px) {
  .gc-slide-overlay {
    padding-right: 14px;
    bottom: 46px;
  }
  .gc-slide-heading { font-size: 12px; }
  .gc-slide-desc    { display: none; } /* hide desc on very small screens */
}


/* =====================================================
   WHY MAURITIUS PAGE
   ===================================================== */

/* Hero banner */
.wm-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b6b 55%, #1a0030 100%);
  padding: 64px var(--pad) 60px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}

.wm-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    /* Horizontal: very dark on left (text safe), fully transparent on right (image visible) */
    linear-gradient(to right,
      rgba(13,15,28,0.97) 0%,
      rgba(13,15,28,0.92) 28%,
      rgba(13,15,28,0.50) 44%,
      rgba(13,15,28,0.00) 55%
    ),
    /* Accent radials — keep site brand colours */
    radial-gradient(circle at 8% 60%, rgba(224,0,15,0.16) 0%, transparent 45%),
    radial-gradient(circle at 82% 30%, rgba(4,37,185,0.18) 0%, transparent 45%);
}

.wm-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 580px;
}

.wm-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(224,0,15,0.2);
  border: 1px solid rgba(224,0,15,0.45);
  border-radius: 2px;
  padding: 4px 14px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ff8899;
  margin-bottom: 16px;
}

.wm-hero h1 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.wm-hero h1 em {
  font-style: normal;
  color: var(--red);
}

.wm-hero-lead {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  max-width: 580px;
  margin-bottom: 24px;
}

.wm-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.wm-hero-badge {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 9px 16px;
  backdrop-filter: blur(8px);
}

.wm-hero-badge .wm-badge-icon { font-size: 18px; }
.wm-hero-badge .wm-badge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.wm-hero-badge .wm-badge-value {
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

/* ── Banner image — right side background layer ──
   Shows only the content-rich RIGHT portion of the image (Modi, red poster,
   event details). mix-blend-mode: multiply makes white areas transparent
   by blending them into the dark hero background. ── */
.wm-hero-bg-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 47%;
  height: 100%;
  /* Two background layers:
     1. Left-edge fade — matches hero dark so any white at the image edge blends away
     2. The banner image — natural colours, no blend modes, no distortion         */
  background-image:
    linear-gradient(to right, #0d1b6b 0%, rgba(13,27,107,0) 28%),
    url('images/best-of-bharat-and-mauritius.png');
  background-size: 100% 100%, auto 100%;
  background-position: left center, right center;
  background-repeat: no-repeat, no-repeat;
  opacity: 0.92;
  z-index: 0;
  pointer-events: none;
}

/* ── Button inside badges flex — aligns next to date badge ── */
.wm-stall-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  align-self: center;
  flex-shrink: 0;
}

/* ── Mobile responsiveness ── */
@media (max-width: 1024px) {
  .wm-hero-bg-img {
    width: 44%;
    opacity: 0.88;
  }
}

@media (max-width: 768px) {
  .wm-hero-bg-img {
    width: 100%;
    background-image:
      linear-gradient(to bottom, rgba(13,15,28,0.90) 0%, rgba(13,15,28,0.55) 50%, rgba(13,15,28,0.90) 100%),
      url('images/best-of-bharat-and-mauritius.png');
    background-size: 100% 100%, cover;
    background-position: center, center;
    opacity: 0.38;
  }
  .wm-hero-inner {
    max-width: 100%;
  }
  .wm-hero-badges {
    flex-direction: column;
    align-items: flex-start;
  }
  .wm-stall-btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .wm-hero-bg-img {
    opacity: 0.20;
  }
}

/* Main content wrapper */
.wm-main {
  background: var(--gray-50);
  padding: 64px var(--pad) 80px;
}

/* Section intro */
.wm-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.wm-intro h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}

.wm-intro h2 em { font-style: normal; color: var(--blue); }

.wm-intro p {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.75;
}

/* 5 Benefits grid */
.wm-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

/* Large card for first benefit */
.wm-benefits-grid .wm-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
}

.wm-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 20px rgba(4, 37, 185, 0.05);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}

.wm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(4, 37, 185, 0.1);
}

.wm-card-accent {
  width: 6px;
  background: linear-gradient(to bottom, var(--blue), var(--red));
  flex-shrink: 0;
}

.wm-card-body {
  padding: 28px 28px 28px 24px;
}

/* Non-featured cards */
.wm-card:not(:first-child) .wm-card-body {
  padding: 26px 24px;
}

.wm-card-num {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wm-card-num::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--blue);
  border-radius: 1px;
}

.wm-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.wm-card p {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 14px;
}

.wm-card p:last-child { margin-bottom: 0; }

.wm-bullet-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.wm-bullet-list li {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  line-height: 1.6;
  padding: 4px 0 4px 20px;
  position: relative;
}

.wm-bullet-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}

/* Challenge section */
.wm-challenge {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  border-left: 5px solid var(--red);
  padding: 36px 36px 36px 32px;
  margin-bottom: 40px;
  box-shadow: 0 2px 20px rgba(224, 0, 15, 0.06);
}

.wm-challenge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.wm-challenge h2 {
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.wm-challenge p {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.75;
  margin-bottom: 10px;
}

.wm-challenge-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.wm-challenge-item {
  background: var(--red-light);
  border: 1px solid rgba(224, 0, 15, 0.2);
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}

/* GOPIO difference section */
.wm-difference {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b6b 100%);
  border-radius: 14px;
  padding: 48px 44px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.wm-difference::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(4,37,185,0.4) 0%, transparent 60%);
}

.wm-difference-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.wm-difference-left .wm-diff-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 12px;
}

.wm-difference-left h2 {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.wm-difference-left h2 em {
  font-style: normal;
  color: #fff;
}

.wm-difference-left p {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 10px;
}

.wm-diff-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.wm-diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 14px 16px;
}

.wm-diff-check {
  width: 22px;
  height: 22px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #fff;
  flex-shrink: 0;
  margin-top: 1px;
}

.wm-diff-text {
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.5;
}

/* Why participate section */
.wm-expo {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  padding: 40px 36px;
  margin-bottom: 40px;
  box-shadow: 0 2px 20px rgba(4,37,185,0.05);
}

.wm-expo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 28px;
}

.wm-expo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.wm-expo-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.wm-expo-item h4 {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
}

.wm-expo-item p {
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Bottom line CTA */
.wm-cta {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 4px solid var(--blue);
  border-radius: 0 0 12px 12px;
  padding: 36px 36px;
  text-align: center;
}

.wm-cta h2 {
  font-size: 24px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.wm-cta p {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 24px;
}

.wm-cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Breadcrumb (shared with BP page) */
.wm-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-400);
  margin-bottom: 36px;
}

.wm-breadcrumb a { color: var(--blue); }
.wm-breadcrumb a:hover { color: var(--blue-dark); }
.wm-breadcrumb .sep { font-size: 10px; }

/* ── Why Mauritius Responsive ── */
@media (max-width: 900px) {
  .wm-benefits-grid {
    grid-template-columns: 1fr 1fr;
  }
  .wm-benefits-grid .wm-card:first-child {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr;
  }
  .wm-difference-inner { grid-template-columns: 1fr; gap: 28px; }
  .wm-expo-grid { grid-template-columns: 1fr; gap: 20px; }
}

@media (max-width: 640px) {
  .wm-hero { padding: 44px 20px 40px; }
  .wm-main { padding: 44px 20px 56px; }
  .wm-benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .wm-benefits-grid .wm-card:first-child { grid-template-columns: auto 1fr; }
  .wm-challenge { padding: 24px 20px; }
  .wm-difference { padding: 32px 24px; }
  .wm-expo { padding: 28px 20px; }
  .wm-cta { padding: 28px 20px; }
  .wm-hero-badges { gap: 10px; }
  .wm-card-body { padding: 20px 18px !important; }
}

@media print {
  .wa-float { display: none !important; }
  .topbar, .navbar, .mobile-nav { display: none !important; }
}


/* =====================================================
   WHY MAURITIUS — ADVISORY CONTENT (SECTIONS 1–3)
   ===================================================== */

/* ── Advisory wrap ── */
.wm-adv-wrap { background: #fff; }

/* ── Intro band ── */
.wm-adv-intro {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b6b 100%);
  padding: 60px var(--pad);
  text-align: center;
}
.wm-adv-intro-inner { max-width: 760px; margin: 0 auto; }
.wm-adv-intro-inner .stag { justify-content: center; }
.wm-adv-intro-inner .stag::before { display: none; }
.wm-adv-intro-inner .stitle { color: #fff; margin-top: 12px; }
.wm-adv-intro-inner .stitle em { color: var(--red); -webkit-text-fill-color: unset; background: none; }
.wm-adv-subtitle {
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55); margin-top: 8px; text-transform: uppercase;
}
.wm-adv-lead {
  font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.72);
  line-height: 1.8; margin-top: 18px;
}

/* ── Each numbered section ── */
.wm-adv-section { padding: 64px var(--pad); }
.wm-adv-section-alt { background: var(--gray-50); }
.wm-adv-section-inner { max-width: 1100px; margin: 0 auto; }

/* Section header row */
.wm-adv-section-hdr {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  margin-bottom: 44px;
  padding-bottom: 28px;
  border-bottom: 2px solid var(--gray-200);
}
.wm-adv-num {
  font-size: 52px; font-weight: 900; line-height: 1;
  color: var(--blue-light); letter-spacing: -0.04em;
  flex-shrink: 0; margin-top: -4px;
  -webkit-text-stroke: 2px var(--blue);
  color: transparent;
}
.wm-adv-num-red {
  -webkit-text-stroke-color: var(--red);
}
.wm-adv-title {
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 900;
  color: var(--dark); letter-spacing: -0.01em; margin-bottom: 8px;
}
.wm-adv-desc {
  font-size: 14px; font-weight: 500; color: var(--gray-700); line-height: 1.7;
}

/* Content blocks inside each section */
.wm-adv-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.wm-adv-block {
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 2px 12px rgba(4,37,185,0.04);
}
.wm-adv-section-alt .wm-adv-block { background: #fff; }
.wm-adv-section.sec-white .wm-adv-block { background: var(--gray-50); }

.wm-adv-block-title {
  font-size: 14px; font-weight: 800; color: var(--dark);
  margin-bottom: 12px; line-height: 1.4;
  padding-bottom: 10px; border-bottom: 2px solid var(--blue-light);
}
.wm-adv-block-body {
  font-size: 13.5px; font-weight: 500; color: var(--gray-700);
  line-height: 1.8; margin-bottom: 10px;
}
.wm-adv-block-body:last-child { margin-bottom: 0; }

/* Callout boxes */
.wm-adv-callout {
  display: flex; gap: 12px; align-items: flex-start;
  background: var(--blue-light); border-left: 3px solid var(--blue);
  border-radius: 0 6px 6px 0; padding: 14px 16px;
  margin-top: 14px; font-size: 13px; font-weight: 500;
  color: var(--dark); line-height: 1.7;
}
.wm-adv-callout-blue {
  background: #fff3f3; border-left-color: var(--red);
}
.wm-adv-callout-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }

/* Lists */
.wm-adv-list {
  margin: 12px 0 0; padding: 0; list-style: none;
  display: flex; flex-direction: column; gap: 8px;
}
.wm-adv-list li {
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  line-height: 1.65; padding-left: 18px; position: relative;
}
.wm-adv-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--blue); font-weight: 700; font-size: 11px; top: 1px;
}
.wm-adv-list-risk li::before { color: var(--red); content: '!'; font-weight: 900; }

/* Country tags */
.wm-adv-tag-list {
  display: flex; flex-wrap: wrap; gap: 6px; margin-top: 14px;
}
.wm-adv-tag {
  background: var(--blue-light); color: var(--blue);
  font-size: 11px; font-weight: 700; padding: 3px 10px;
  border-radius: 3px; letter-spacing: 0.04em;
}

/* Numbered steps */
.wm-adv-steps { display: flex; flex-direction: column; gap: 10px; margin-top: 14px; }
.wm-adv-step {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 13px; font-weight: 500; color: var(--gray-700); line-height: 1.6;
}
.wm-adv-step-n {
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}

/* Tables */
.wm-adv-table-wrap { overflow-x: auto; margin-top: 14px; border-radius: 8px; }
.wm-adv-table {
  width: 100%; border-collapse: collapse;
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  background: #fff; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--gray-200);
}
.wm-adv-table thead tr { background: var(--dark); }
.wm-adv-table thead th {
  padding: 12px 16px; text-align: left;
  font-size: 11px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255,255,255,0.85);
}
.wm-adv-table tbody tr:nth-child(even) { background: var(--gray-50); }
.wm-adv-table tbody td {
  padding: 11px 16px; border-bottom: 1px solid var(--gray-200);
  line-height: 1.6;
}
.wm-adv-table tbody tr:last-child td { border-bottom: none; }
.wm-adv-zero { color: var(--blue); font-weight: 800; }

/* Banking cards */
.wm-adv-bank-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.wm-adv-bank-card {
  background: var(--blue-light); border-radius: 8px;
  padding: 16px; font-size: 13px; color: var(--gray-700); line-height: 1.65;
}
.wm-adv-bank-name {
  font-size: 13px; font-weight: 800; color: var(--blue);
  margin-bottom: 6px;
}

/* Regulatory cards */
.wm-adv-reg-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; margin-top: 14px; }
.wm-adv-reg-card {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 14px;
  font-size: 12.5px; color: var(--gray-700); line-height: 1.65;
}
.wm-adv-reg-name {
  font-size: 12px; font-weight: 800; color: var(--blue);
  margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* Three-layer model */
.wm-adv-layer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; margin-top: 14px; }
.wm-adv-layer {
  border-radius: 10px; padding: 22px 20px;
  font-size: 13px; font-weight: 500; color: var(--gray-700); line-height: 1.65;
}
.wm-adv-layer-1 { background: var(--blue-light); border-top: 3px solid var(--blue); }
.wm-adv-layer-2 { background: #fff0f1; border-top: 3px solid var(--red); }
.wm-adv-layer-3 { background: var(--gray-50); border-top: 3px solid var(--dark); }
.wm-adv-layer-num {
  font-size: 10px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px;
}
.wm-adv-layer-name {
  font-size: 14px; font-weight: 800; color: var(--dark); margin-bottom: 10px;
}

/* Governance stats */
.wm-adv-gov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 14px; }
.wm-adv-gov-item {
  background: var(--gray-50); border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 14px;
}
.wm-adv-gov-lbl {
  font-size: 10px; font-weight: 800; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400); margin-bottom: 4px;
}
.wm-adv-gov-val { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.5; }

/* Diaspora data */
.wm-adv-diaspora-grid { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.wm-adv-diaspora-item {
  display: flex; gap: 12px; align-items: baseline;
  font-size: 13px; padding: 8px 12px;
  background: var(--gray-50); border-radius: 6px;
  border-left: 3px solid var(--blue);
}
.wm-adv-dia-country {
  font-weight: 800; color: var(--blue); flex-shrink: 0; min-width: 120px;
}
.wm-adv-dia-detail { color: var(--gray-700); line-height: 1.5; }

/* Decision framework */
.wm-adv-decision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 14px; }
.wm-adv-decision { border-radius: 10px; padding: 22px 20px; }
.wm-adv-decision-yes {
  background: #f0fff4; border: 1px solid #a7f3d0; border-top: 3px solid #16a34a;
}
.wm-adv-decision-no {
  background: #fff0f1; border: 1px solid #fca5a5; border-top: 3px solid var(--red);
}
.wm-adv-decision-hdr {
  font-size: 13px; font-weight: 800; color: var(--dark);
  margin-bottom: 12px; padding-bottom: 8px; border-bottom: 1px solid currentColor;
  opacity: 0.7;
}
.wm-adv-decision ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 7px; }
.wm-adv-decision ul li {
  font-size: 13px; font-weight: 500; color: var(--gray-700);
  line-height: 1.6; padding-left: 16px; position: relative;
}
.wm-adv-decision-yes ul li::before {
  content: '✓'; position: absolute; left: 0;
  color: #16a34a; font-weight: 800; font-size: 11px;
}
.wm-adv-decision-no ul li::before {
  content: '✗'; position: absolute; left: 0;
  color: var(--red); font-weight: 800; font-size: 11px;
}

/* ── SECTION 2: CLOSING + SECTORS ── */
.wm-closing-wrap { background: #fff; }

/* Closing statement dark band */
.wm-close-band {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1b6b 60%, #1a0030 100%);
  padding: 72px var(--pad);
}
.wm-close-inner {
  max-width: 840px; margin: 0 auto; text-align: center;
}
.wm-close-inner .stag { justify-content: center; }
.wm-close-inner .stag::before { display: none; }
.wm-close-inner h2 {
  font-size: clamp(22px, 2.8vw, 36px); font-weight: 900;
  color: #fff; line-height: 1.25; letter-spacing: -0.02em;
  margin: 14px 0 20px;
}
.wm-close-inner h2 em { font-style: normal; color: var(--red); }
.wm-close-inner p {
  font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.72);
  line-height: 1.8; margin-bottom: 14px;
}
.wm-close-quote {
  border-left: 4px solid var(--red);
  margin: 28px 0; padding: 18px 24px; text-align: left;
  background: rgba(255,255,255,0.06); border-radius: 0 8px 8px 0;
  font-size: 15px; font-style: italic; font-weight: 600;
  color: rgba(255,255,255,0.88); line-height: 1.7;
}
.wm-close-quote cite {
  display: block; font-size: 12px; font-style: normal;
  font-weight: 700; color: rgba(255,255,255,0.5);
  margin-top: 10px; letter-spacing: 0.06em; text-transform: uppercase;
}
.wm-close-cta-text {
  font-size: 15px !important; font-weight: 700 !important;
  color: rgba(255,255,255,0.88) !important; margin-top: 20px !important;
}

/* Ministries band */
.wm-ministries-band {
  background: var(--blue-light); padding: 52px var(--pad);
  border-top: 3px solid var(--blue); border-bottom: 3px solid var(--blue);
}
.wm-ministries-inner { max-width: 840px; margin: 0 auto; }
.wm-ministries-tag {
  font-size: 11px; font-weight: 800; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 16px; display: block;
}
.wm-ministries-inner p {
  font-size: 14px; font-weight: 500; color: var(--gray-700);
  line-height: 1.8; margin-bottom: 12px;
}
.wm-ministries-tagline {
  font-size: 17px; font-weight: 900; color: var(--dark);
  margin-top: 20px; margin-bottom: 0 !important;
}

/* Sectors grid */
.wm-sectors-wrap { padding: 64px var(--pad); background: var(--gray-50); }
.wm-sectors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.wm-sector-card {
  background: #fff; border-radius: 12px;
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue);
  padding: 24px 20px;
  box-shadow: 0 2px 16px rgba(4,37,185,0.05);
  transition: transform 0.25s, box-shadow 0.25s;
}
.wm-sector-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(4,37,185,0.1);
}
.wm-sector-card:nth-child(2) { border-top-color: var(--red); }
.wm-sector-card:nth-child(3) { border-top-color: #16a34a; }
.wm-sector-card:nth-child(4) { border-top-color: #d97706; }
.wm-sector-card:nth-child(5) { border-top-color: var(--blue-dark); }
.wm-sector-card:nth-child(6) { border-top-color: var(--red); }
.wm-sector-card:nth-child(7) { border-top-color: #16a34a; }
.wm-sector-card:nth-child(8) { border-top-color: #7c3aed; }
.wm-sector-num {
  font-size: 9px; font-weight: 800; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 8px;
}
.wm-sector-icon { font-size: 28px; margin-bottom: 10px; }
.wm-sector-card h3 {
  font-size: 14px; font-weight: 800; color: var(--dark);
  line-height: 1.35; margin-bottom: 8px;
}
.wm-sector-ministry {
  font-size: 10px; font-weight: 700; color: var(--gray-400);
  letter-spacing: 0.04em; margin-bottom: 12px;
  padding-bottom: 12px; border-bottom: 1px solid var(--gray-200);
}
.wm-sector-card p {
  font-size: 12.5px; font-weight: 500; color: var(--gray-700);
  line-height: 1.7; margin-bottom: 10px;
}
.wm-sector-card p:last-child { margin-bottom: 0; }
.wm-sectors-cta {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-top: 8px;
}

/* ── SECTION 3: TOURISM ── */
.wm-tourism-wrap {
  background: #fff; padding: 0 0 0 0;
}
.wm-tourism-hdr {
  background: var(--gray-50); padding: 60px var(--pad) 48px;
  text-align: center; border-top: 1px solid var(--gray-200);
}
.wm-tourism-hdr .stag { justify-content: center; }
.wm-tourism-hdr .stag::before { display: none; }
.wm-tourism-hdr .stitle { margin-top: 12px; }
.wm-tourism-intro-lead {
  font-size: 15px; font-weight: 500; color: var(--gray-700);
  line-height: 1.8; max-width: 800px; margin: 20px auto 0;
}

/* Two directions */
.wm-tourism-directions {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
}
.wm-tourism-dir {
  padding: 48px var(--pad);
  font-size: 14px; font-weight: 500; color: var(--gray-700); line-height: 1.8;
  background: #fff;
}
.wm-tourism-dir-alt { background: var(--gray-50); }
.wm-tourism-dir-label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 8px;
}
.wm-tourism-dir h3 {
  font-size: 20px; font-weight: 900; color: var(--dark);
  margin-bottom: 16px; letter-spacing: -0.01em;
}
.wm-tourism-dir p { margin-bottom: 12px; }

/* Stats band */
.wm-tourism-stats-band {
  display: flex; flex-wrap: wrap;
  background: var(--dark); padding: 32px var(--pad);
  gap: 0;
}
.wm-tourism-stat {
  flex: 1; min-width: 160px; padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}
.wm-tourism-stat:last-child { border-right: none; }
.wm-ts-num {
  font-size: 28px; font-weight: 900; color: var(--red);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px;
}
.wm-ts-lbl {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

/* 5 opportunities */
.wm-tourism-opps-hdr {
  text-align: center; padding: 56px var(--pad) 0;
  background: #fff;
}
.wm-tourism-opps {
  padding: 36px var(--pad) 56px;
  display: flex; flex-direction: column; gap: 24px;
  max-width: 1000px; margin: 0 auto;
}
.wm-tourism-opp {
  display: flex; gap: 28px; align-items: flex-start;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 12px; padding: 28px 28px 28px 24px;
  box-shadow: 0 2px 12px rgba(4,37,185,0.04);
}
.wm-topp-num {
  font-size: 40px; font-weight: 900; color: var(--blue-light);
  -webkit-text-stroke: 2px var(--blue); color: transparent;
  line-height: 1; flex-shrink: 0; margin-top: 2px;
  min-width: 44px; text-align: right;
}
.wm-topp-body h3 {
  font-size: 16px; font-weight: 800; color: var(--dark);
  margin-bottom: 12px; line-height: 1.35; letter-spacing: -0.01em;
}
.wm-topp-body p {
  font-size: 13.5px; font-weight: 500; color: var(--gray-700);
  line-height: 1.8; margin-bottom: 10px;
}
.wm-topp-body p:last-child { margin-bottom: 0; }

/* Bilateral advantage */
.wm-tourism-bilateral {
  background: var(--blue-light); padding: 52px var(--pad);
  text-align: center;
}
.wm-tourism-bilateral .stag { justify-content: center; }
.wm-tourism-bilateral .stag::before { display: none; }
.wm-tourism-bilateral .stitle { margin-top: 12px; max-width: 820px; margin-left: auto; margin-right: auto; }
.wm-tourism-bilateral p {
  font-size: 14.5px; font-weight: 500; color: var(--gray-700);
  line-height: 1.8; max-width: 820px; margin: 18px auto 0;
}

/* Platform outcomes */
.wm-tourism-outcomes {
  background: var(--gray-50); padding: 56px var(--pad);
}
.wm-tourism-outcomes-title {
  font-size: 20px; font-weight: 800; color: var(--dark);
  margin-bottom: 28px; letter-spacing: -0.01em;
}
.wm-tourism-outcome-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px; margin-bottom: 32px;
}
.wm-tourism-outcome-item {
  display: flex; flex-direction: column; gap: 5px;
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: 8px; padding: 16px 18px;
}
.wm-to-type {
  font-size: 12px; font-weight: 800; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.06em;
}
.wm-to-gain {
  font-size: 13px; font-weight: 500; color: var(--gray-700); line-height: 1.65;
}
.wm-tourism-close {
  font-size: 14px; font-weight: 600; color: var(--dark);
  line-height: 1.75; max-width: 820px;
  padding: 20px 24px; background: #fff;
  border-radius: 8px; border-left: 4px solid var(--red);
}

/* ── RESPONSIVE — Why Mauritius New Sections ── */
@media (max-width: 1200px) {
  .wm-sectors-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .wm-adv-blocks { grid-template-columns: 1fr; }
  .wm-adv-layer-grid { grid-template-columns: 1fr; gap: 12px; }
  .wm-adv-bank-grid { grid-template-columns: 1fr; }
  .wm-adv-reg-grid { grid-template-columns: 1fr 1fr; }
  .wm-adv-decision-grid { grid-template-columns: 1fr; }
  .wm-adv-gov-grid { grid-template-columns: 1fr; }
  .wm-tourism-directions { grid-template-columns: 1fr; }
  .wm-tourism-outcome-grid { grid-template-columns: 1fr; }
  .wm-tourism-opps { padding: 28px 40px 40px; }
}

@media (max-width: 900px) {
  .wm-sectors-grid { grid-template-columns: 1fr 1fr; }
  .wm-tourism-stats-band { gap: 0; }
  .wm-tourism-stat { min-width: 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .wm-tourism-stat:nth-child(2n) { border-right: none; }
}

@media (max-width: 640px) {
  .wm-adv-intro { padding: 44px 20px; }
  .wm-adv-section { padding: 40px 20px; }
  .wm-adv-section-hdr { flex-direction: column; gap: 12px; }
  .wm-adv-num { font-size: 36px; }
  .wm-adv-reg-grid { grid-template-columns: 1fr; }
  .wm-close-band { padding: 48px 20px; }
  .wm-ministries-band { padding: 36px 20px; }
  .wm-sectors-wrap { padding: 40px 20px; }
  .wm-sectors-grid { grid-template-columns: 1fr; }
  .wm-tourism-hdr { padding: 44px 20px 36px; }
  .wm-tourism-dir { padding: 36px 20px; }
  .wm-tourism-stats-band { padding: 24px 20px; }
  .wm-tourism-stat { min-width: 100%; border-right: none; }
  .wm-tourism-opps-hdr { padding: 40px 20px 0; }
  .wm-tourism-opps { padding: 24px 20px 36px; }
  .wm-tourism-opp { flex-direction: column; gap: 12px; padding: 20px; }
  .wm-topp-num { font-size: 28px; text-align: left; }
  .wm-tourism-bilateral { padding: 36px 20px; }
  .wm-tourism-outcomes { padding: 36px 20px; }
  .wm-adv-diaspora-item { flex-direction: column; gap: 2px; }
  .wm-adv-dia-country { min-width: auto; }
  .wm-adv-table { font-size: 12px; }
  .wm-adv-table thead th,
  .wm-adv-table tbody td { padding: 8px 10px; }
}

@media (max-width: 480px) {
  .wm-adv-bank-grid { grid-template-columns: 1fr; }
}


/* =====================================================
   PM VISION SECTION — index.html (compact)
   ===================================================== */

/* Override section padding — tighter than the default 80px */
#pm-vision { padding: 52px var(--pad); }

.pmv-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 48px;
  align-items: start;
}

/* Image column */
.pmv-img-col { position: relative; }

.pmv-img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(4, 37, 185, 0.13);
  height: 100%;                /* fill full column height */
  display: flex;
  flex-direction: column;
}

.pmv-img {
  width: 100%;
  flex: 1;
  display: block;
  object-fit: contain;           /* fill the frame, no letterbox bars */
  object-position: center center;
  min-height: 240px;
}

/* badge removed */

/* Content column */
.pmv-lead {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.7;
  margin: 12px 0 18px;
}

/* Overlay container — bottom of image */
.pmv-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 100%);
}

/* Download brochure button — on image */
.pmv-img-overlay .pmv-brochure-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #E0000F !important;
  color: #fff !important;
  font-family: 'Raleway', sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  text-decoration: none !important;
  border-radius: 4px;
  width: 100%;
  box-shadow: 0 3px 16px rgba(0,0,0,0.4);
  transition: background 0.2s;
  text-align: center;
  line-height: 1.4;
  border: none;
}

.pmv-img-overlay .pmv-brochure-btn:hover {
  background: #b3000c !important;
  color: #fff !important;
}

/* 3-column tag grid — compact chips */
.pmv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}

.pmv-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-top: 2px solid var(--blue);
  border-radius: 6px;
  padding: 10px 12px;
  transition: border-top-color 0.2s, background 0.2s, box-shadow 0.2s;
}

.pmv-list li:hover {
  border-top-color: var(--red);
  background: #fff;
  box-shadow: 0 4px 14px rgba(4,37,185,0.08);
}

.pmv-list li:nth-child(3n+2) { border-top-color: var(--red); }
.pmv-list li:nth-child(3n+3) { border-top-color: var(--blue-dark); }
.pmv-list li:nth-child(3n+2):hover,
.pmv-list li:nth-child(3n+3):hover { border-top-color: var(--red); }

.pmv-num {
  font-size: 9px;
  font-weight: 900;
  color: var(--blue);
  letter-spacing: 0.1em;
  flex-shrink: 0;
  margin-top: 2px;
}

.pmv-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .pmv-inner { grid-template-columns: 240px 1fr; gap: 36px; }
  .pmv-list  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  #pm-vision { padding: 40px var(--pad); }
  .pmv-inner { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .pmv-img-wrap { height: auto; }
  .pmv-img   { min-height: 220px; max-height: 280px; }
  .pmv-list  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  #pm-vision { padding: 32px var(--pad); }
  .pmv-img   { min-height: 180px; max-height: 220px; }
  .pmv-list  { grid-template-columns: 1fr; }
  .pmv-lead  { font-size: 13px; }
}




/* =====================================================
   COUNTDOWN TIMER — business-proposal.html
   ===================================================== */

.bp-countdown-wrap {
  margin-top: 24px;
}

.bp-countdown-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  position: relative;
  background: linear-gradient(135deg, var(--red) 0%, #b3000c 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 24px;
  font-family: 'Raleway', sans-serif;
  box-shadow: 0 6px 28px rgba(224, 0, 15, 0.40);
  cursor: default;
  overflow: hidden;
  max-width: 100%;
  flex-wrap: wrap;
  gap: 10px 16px;
  /* Breathe animation on the whole button */
  animation: bpBreathe 3s ease-in-out infinite;
}

/* Shimmer sweep */
.bp-countdown-btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  animation: bpShimmer 2.8s ease-in-out infinite;
}

@keyframes bpShimmer {
  0%   { left: -100%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

/* Pulse dot */
.bp-countdown-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(255,255,255,0.7);
  animation: bpPulse 1.4s ease-out infinite;
}

@keyframes bpPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}

/* Subtle breathe — whole button scales + glow */
@keyframes bpBreathe {
  0%, 100% { transform: scale(1);    box-shadow: 0 6px 28px rgba(224,0,15,0.40); }
  50%       { transform: scale(1.015); box-shadow: 0 10px 36px rgba(224,0,15,0.60); }
}

.bp-countdown-icon {
  font-size: 20px;
  flex-shrink: 0;
  line-height: 1;
}

.bp-countdown-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
}

.bp-countdown-label strong {
  color: #fff;
  font-weight: 800;
}

.bp-countdown-timer {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  background: rgba(0,0,0,0.25);
  border-radius: 5px;
  padding: 4px 12px;
  flex-shrink: 0;
  transition: opacity 0.15s;
}

.bp-countdown-timer.tick-flash {
  animation: bpTickFlash 0.18s ease;
}

@keyframes bpTickFlash {
  0%   { opacity: 1; }
  40%  { opacity: 0.55; }
  100% { opacity: 1; }
}

/* Expired state */
.bp-countdown-expired .bp-countdown-btn {
  background: var(--gray-700);
  box-shadow: none;
  animation: none;
}
.bp-countdown-expired .bp-countdown-btn::after,
.bp-countdown-expired .bp-countdown-pulse,
.bp-countdown-expired .bp-countdown-timer { animation: none; }

/* Responsive */
@media (max-width: 640px) {
  .bp-countdown-btn {
    padding: 12px 16px;
    border-radius: 6px;
  }
  .bp-countdown-label { font-size: 12px; }
  .bp-countdown-timer { font-size: 15px; padding: 3px 10px; }
}


/* =====================================================
   PARTNERS SECTION
   ===================================================== */

.partners-sec { border-top: 1px solid var(--gray-200); }

.partners-inner {
  max-width: 820px;
  margin: 0 auto;
}

.partners-hdr {
  margin-bottom: 32px;
}

.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.partner-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 2px 12px rgba(4,37,185,0.05);
  transition: box-shadow 0.25s, transform 0.25s;
}

.partner-card:hover {
  box-shadow: 0 8px 28px rgba(4,37,185,0.1);
  transform: translateY(-2px);
}

.partner-card-logo {
  height: 64px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.partner-card-logo--wide {
  max-width: 140px;
}

.partner-card-body { flex: 1; }

.partner-card-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.3;
}

.partner-card-desc {
  font-size: 12px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.55;
}

@media (max-width: 640px) {
  .partners-grid { grid-template-columns: 1fr; gap: 16px; }
  .partner-card  { padding: 16px 18px; }
  .partner-card-logo { height: 50px; }
}