/* Google Fonts — Cinzel for headings */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Cinzel+Decorative:wght@400;700&display=swap');

/* =============================================
   GOLDEN I MINERALS — PREMIUM CSS STYLESHEET
   Color Theme: Deep Royal Blue #1C3473 | Amber Gold #C9A030 | Magenta Pink #E91E8C
   ============================================= */

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* ── Blue (deep royal, like psychiatristprathap.com) ── */
  --navy:       #1C3473;
  --navy-dark:  #0F1F52;
  --navy-mid:   #1A3A8C;
  --navy-light: #2A4FA8;

  /* ── Gold / Amber ── */
  --gold:       #C9A030;
  --gold-light: #F5C518;
  --gold-dark:  #A07820;

  /* ── Pink / Magenta ── */
  --magenta:    #E91E8C;
  --magenta-dk: #C4166E;
  --magenta-lt: #F548AA;

  /* ── Neutrals ── */
  --white:      #FFFFFF;
  --off-white:  #F6F8FC;
  --text-dark:  #0B1A3D;
  --text-mid:   #3A4D70;
  --text-light: #7080A0;
  --border:     #DDE3F0;
  --dark-bg:    #0C1840;
  --dark-card:  #142060;

  /* ── Shadows ── */
  --shadow-sm:  0 2px 12px rgba(28,52,115,0.10);
  --shadow-md:  0 6px 30px rgba(28,52,115,0.15);
  --shadow-lg:  0 16px 60px rgba(28,52,115,0.20);

  /* ── Radii & Motion ── */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  24px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100%;
}
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial,
               "Noto Sans", "Liberation Sans", sans-serif,
               "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  color: var(--text-dark);
  background: #ffffff;
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* Prevent ANY child from causing horizontal scroll */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Mobile menu overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,24,64,0.55);
  backdrop-filter: blur(2px);
  z-index: 990;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.nav-overlay.visible {
  display: block;
  opacity: 1;
}

.section-pad { padding: 100px 0; }

/* Utility */
.gold-text { color: var(--gold); }
.white { color: var(--white) !important; }
.light { opacity: 0.7; }
.centered { text-align: center; }

/* === SHARED TYPOGRAPHY === */
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(245,166,35,0.15), rgba(233,30,140,0.12));
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 10px;
  border: 1px solid rgba(233,30,140,0.3);
  margin-bottom: 1rem;
}
.section-tag.light {
  background: rgba(233,30,140,0.15);
  color: var(--magenta-lt);
  border-color: rgba(233,30,140,0.3);
  opacity: 1;
}
.section-heading {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 700;
  line-height: 1.22;
  margin-bottom: 1.2rem;
}
.section-sub, .section-desc {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 680px;
  margin-bottom: 1rem;
}
.section-header.centered .section-sub,
.section-header.centered .section-desc {
  margin: 0 auto 1.5rem;
}
.section-header { margin-bottom: 3.5rem; }

/* === BUTTONS — Flat, 1px border, 10px radius === */

/* PRIMARY — solid magenta */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--magenta);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid var(--magenta-dk);
  box-shadow: 0 3px 10px rgba(233,30,140,0.22);
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--magenta-dk);
  border-color: var(--magenta-dk);
  box-shadow: 0 5px 16px rgba(233,30,140,0.32);
  transform: translateY(-2px);
}

/* OUTLINE-WHITE — white border on dark backgrounds */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 12px 28px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.6);
  transition: var(--transition);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* SECONDARY — solid navy */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid var(--navy-mid);
  box-shadow: 0 3px 10px rgba(28,52,115,0.18);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  box-shadow: 0 5px 16px rgba(28,52,115,0.28);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* === TOP BAR === */
.topbar {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 8px 0;
  font-size: 0.82rem;
  color: #ffffff !important;
  position: relative;
  z-index: 1000;
  width: 100%;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 2.5rem;
  box-sizing: border-box;
}
.topbar-left { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.topbar-left span { display: flex; align-items: center; gap: 6px; color: #ffffff !important; font-weight: 500; }
.topbar-left i { color: var(--gold-light); font-size: 0.8rem; }
.topbar-right { display: flex; align-items: center; gap: 12px; }
.topbar-right a { color: #ffffff !important; transition: color 0.25s; font-size: 0.88rem; }
.topbar-right a:hover { color: var(--gold-light) !important; }
.topbar-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white) !important;
  padding: 5px 16px !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.topbar-btn:hover { opacity: 0.9; color: var(--white) !important; }

/* === NAVBAR === */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: 100%;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-md);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;      /* 100% full-width fluid header */
  gap: 1rem;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
  max-width: calc(100% - 60px);
  padding: 6px 0;
}
.nav-logo img {
  height: 60px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  display: block;
}
.logo-fallback { display: none !important; }
.logo-gim {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--navy);
}
.logo-title {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.logo-tagline {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--text-mid);
  text-transform: uppercase;
}

.nav-menu {
  flex: 1;              /* take available space between logo and CTA */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.nav-menu ul {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-menu > ul > li { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--navy);
  background: rgba(28,52,115,0.06);
}
.nav-link.active { color: var(--magenta); }
.nav-link i { font-size: 0.65rem; transition: transform 0.3s; }
.has-mega:hover > .nav-link i,
.has-dropdown:hover .nav-link i { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  z-index: 100;
  overflow: hidden;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: flex;
  align-items: center;
  padding: 10px 18px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
  border-left: 3px solid transparent;
}
.dropdown li a:hover {
  background: rgba(27,42,107,0.05);
  color: var(--navy);
  border-left-color: var(--gold);
  padding-left: 22px;
}

.nav-cta { flex-shrink: 0; margin-left: 0.5rem; }

/* ============================================
   HAMBURGER BUTTON — 100% visible on mobile/tablet
   ============================================ */
.hamburger {
  display: none;        /* hidden on desktop */
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-size: 1.25rem;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  z-index: 1001;
  position: relative;
}
.hamburger:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.hamburger .ham-close { display: none !important; }
.hamburger .ham-open  { display: inline-block !important; }
.hamburger.open .ham-close { display: inline-block !important; }
.hamburger.open .ham-open  { display: none !important; }
.hamburger.open { background: var(--navy); color: #fff; border-color: var(--navy); }

/* === HERO SLIDER === */
.hero-slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slides-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.2s ease;
}
/* Background Image Layer — ONLY THIS ZOOMS */
.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
  transition: transform 8s ease-out;
  z-index: 0;
}
.slide.active {
  opacity: 1;
}
.slide.active::before {
  transform: scale(1.08); /* Zoom only background image */
}
.slide.fade-out {
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(11, 17, 52, 0.82) 0%,
    rgba(11, 17, 52, 0.50) 60%,
    rgba(27, 42, 107, 0.25) 100%
  );
}
.slide-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  transform: none !important; /* Text never zooms */
}
.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,0.2);
  border: 1px solid rgba(245,166,35,0.5);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s 0.3s both;
}
.slide-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.4rem;
  animation: fadeInUp 0.8s 0.5s both;
}
.slide-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.8s 0.7s both;
  max-width: 620px;
}
.slide-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s 0.9s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.45);
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  line-height: 1;
}
.slider-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}
.slider-btn i { pointer-events: none; line-height: 1; font-size: 1rem; }
.slider-btn.prev { left: 1.5rem; }
.slider-btn.next { right: 1.5rem; }

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
}
.dot.active {
  background: var(--gold);
  border-color: var(--gold);
  width: 30px;
  border-radius: 5px;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  right: 2.5rem;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}
.scroll-line {
  width: 1.5px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 1.8s infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.6; }
  50% { opacity: 0.2; }
}

/* ============================================
   STATS BAR — Sleek, Compact Equal Grid
   ============================================ */
.stats-bar {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 24px 0 !important;   /* Sleek, reduced height */
  position: relative;
  overflow: hidden;
  border-top: 3px solid var(--magenta);
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
/* Grid: 5 equal columns */
.stats-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
  gap: 16px;
  width: 100%;
}
/* Each stat item — sleek, compact */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  color: var(--white);
  transition: all 0.3s ease;
}
.stat-item:hover {
  background: rgba(233,30,140,0.12);
  border-color: rgba(233,30,140,0.4);
  transform: translateY(-4px);
}
/* Icon on top */
.stat-item > i {
  font-size: 1.9rem;
  color: var(--gold-light);
  margin-bottom: 10px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(245,197,24,0.4));
}
/* Number + unit on one row */
.stat-item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.stat-num-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num {
  font-family: 'Cinzel', serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white) !important;
}
.stat-unit {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-light) !important;
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85) !important;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
}
.stat-divider { display: none; }

/* Responsive */
@media (max-width: 900px) {
  .stats-inner { grid-template-columns: repeat(3, 1fr); }
  .stat-item:nth-child(3)::after { display: none; }
}
@media (max-width: 600px) {
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 28px 16px; }
  .stat-num { font-size: 1.8rem; }
  .stat-item:nth-child(2)::after { display: none; }
  .stat-item:nth-child(4)::after { display: none; }
}

/* === ABOUT SECTION === */
.about-section { background: var(--off-white); padding: 80px 0 !important; }
.about-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.15fr !important;
  gap: 48px !important;
  align-items: stretch !important;
}
.about-img-col {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 14px !important;
}
.about-img-frame {
  position: relative !important;
  border-radius: 16px !important;
  overflow: visible !important;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12) !important;
  flex-grow: 1 !important;
}
.about-img-frame img {
  width: 100% !important;
  height: 100% !important;
  min-height: 340px !important;
  object-fit: cover !important;
  border-radius: 16px !important;
  display: block !important;
}
.about-badge-float {
  position: absolute !important;
  bottom: 18px !important;
  right: -14px !important;
  background: linear-gradient(135deg, #F5C518 0%, #D4A017 100%) !important;
  border-radius: 12px !important;
  padding: 10px 18px !important;
  text-align: center !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2) !important;
  color: #0F1F52 !important;
  z-index: 10 !important;
}
.badge-num {
  display: block !important;
  font-family: 'Cinzel', serif !important;
  font-size: 1.8rem !important;
  font-weight: 900 !important;
  color: #0F1F52 !important;
  line-height: 1 !important;
}
.badge-text {
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  color: #0F1F52 !important;
  display: block !important;
  margin-top: 2px !important;
  white-space: nowrap !important;
}
.about-mini-stats {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 8px !important;
  background: #ffffff !important;
  padding: 12px 14px !important;
  border-radius: 12px !important;
  border: 1px solid rgba(15,31,82,0.1) !important;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04) !important;
}
.ams-item {
  text-align: center !important;
}
.ams-item strong {
  display: block !important;
  font-family: 'Cinzel', serif !important;
  font-size: 1.1rem !important;
  font-weight: 800 !important;
  color: #1C3473 !important;
  line-height: 1.1 !important;
}
.ams-item span {
  font-size: 0.72rem !important;
  font-weight: 600 !important;
  color: #555555 !important;
  display: block !important;
  margin-top: 2px !important;
  white-space: nowrap !important;
}
.left-ctas {
  display: flex !important;
  gap: 12px !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.left-ctas .btn-primary, .left-ctas .btn-secondary {
  flex: 1 !important;
  text-align: center !important;
  justify-content: center !important;
  padding: 12px 14px !important;
  font-size: 0.86rem !important;
}
.about-checklist {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin: 24px 0 12px 0 !important;
}
.acl-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 0.94rem !important;
  font-weight: 600 !important;
  color: #0F1F52 !important;
  background: #ffffff !important;
  padding: 12px 18px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(15,31,82,0.1) !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03) !important;
  transition: transform 0.2s ease, border-color 0.2s ease !important;
}
.acl-item:hover {
  transform: translateX(4px) !important;
  border-color: #F5C518 !important;
}
.acl-item i {
  color: #D4A017 !important;
  font-size: 1.1rem !important;
  flex-shrink: 0 !important;
}

  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}
.af-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(233,30,140,0.08));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--navy);
  flex-shrink: 0;
}
.about-feature strong { display: block; font-size: 0.94rem; color: var(--text-dark); margin-bottom: 4px; }
.about-feature p { font-size: 0.85rem; color: var(--text-mid); margin: 0; }

.about-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* === SERVICES SECTION === */
.dark-section {
  background: var(--dark-bg);
  color: var(--white);
}
.dark-section .section-heading { color: var(--white); }
.dark-section .section-sub, .dark-section .section-desc { color: rgba(255,255,255,0.7); }

.services-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(245,166,35,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(233,30,140,0.07) 0%, transparent 50%);
  pointer-events: none;
}
.services-section { position: relative; overflow: hidden; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--dark-card);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-md);
  padding: 2.2rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  group: true;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(245,166,35,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.service-card.featured {
  background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(233,30,140,0.08));
  border-color: rgba(245,166,35,0.3);
}
.service-featured-badge {
  position: absolute;
  top: 0; right: 0;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 0 0 0 10px;
}
.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(245,166,35,0.2), rgba(233,30,140,0.15));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 1.4rem;
  transition: var(--transition);
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  color: var(--white);
}
.service-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.8rem; }
.service-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; margin-bottom: 1.2rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}
.service-link i { transition: transform 0.3s; }
.service-link:hover { color: var(--gold-light); }
.service-link:hover i { transform: translateX(4px); }

/* === PRODUCTS SECTION === */
.products-section { background: var(--white); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  background: var(--white);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,17,52,0.85), transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity 0.35s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-inquiry-btn {
  background: var(--gold);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  transition: var(--transition);
}
.product-inquiry-btn:hover { background: var(--white); color: var(--navy); }

.product-info { padding: 1.5rem; }
.product-tag {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--magenta);
  margin-bottom: 6px;
}
.product-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text-dark);
}
.product-info p { font-size: 0.86rem; color: var(--text-mid); margin-bottom: 1rem; line-height: 1.6; }
.product-specs { display: flex; flex-direction: column; gap: 4px; margin-bottom: 1.2rem; }
.product-specs span {
  font-size: 0.8rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-specs i { color: var(--gold-dark); font-size: 0.7rem; }

.btn-product {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 700;
  transition: var(--transition);
}
.btn-product:hover { background: var(--gold-dark); }

/* === GOVERNMENT SECTION === */
.govt-section {
  position: relative;
  background: url('../images/hero5.jpg') center/cover no-repeat;
  padding: 100px 0;
}
.govt-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,17,52,0.93) 0%, rgba(27,42,107,0.85) 100%);
}
.govt-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 4rem;
  align-items: start;
}
.govt-content .section-heading { color: var(--white) !important; }
.govt-content .section-heading span,
.govt-content .gold-text,
.govt-section .gold-text {
  color: var(--gold-light) !important;
  background: none !important;
  -webkit-text-fill-color: var(--gold-light) !important;
  text-shadow: 0 2px 10px rgba(0,0,0,0.6) !important;
}
.govt-content .section-desc { color: rgba(255,255,255,0.85); max-width: 100%; }
.govt-departments {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 1.8rem;
}
.dept-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.88);
  font-size: 0.83rem;
  font-weight: 500;
  transition: var(--transition);
}
.dept-item:hover { background: rgba(245,166,35,0.15); border-color: rgba(245,166,35,0.4); }
.dept-item i { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

.govt-stats-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.govt-stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  text-align: center;
  color: var(--white);
  transition: var(--transition);
}
.govt-stat-card:hover {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.4);
  transform: translateY(-4px);
}
.govt-stat-card > i { font-size: 1.8rem; color: var(--gold); margin-bottom: 10px; }
.gs-num {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.1;
  margin-bottom: 6px;
}
.gs-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); font-weight: 500; }

/* === WHY US SECTION === */
.why-section { background: var(--off-white); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.why-card:hover::after { transform: scaleX(1); }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(27,42,107,0.2); }
.why-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.7rem; color: var(--text-dark); }
.why-card p { font-size: 0.86rem; color: var(--text-mid); line-height: 1.7; }

/* === EXPORT SECTION (Symmetrical 2-Column Luxury Layout) === */
.export-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #0B1134 0%, #17245B 100%) !important; }
.dark-section .section-heading,
.dark-section h2 {
  color: #ffffff !important;
}
.dark-section .section-heading span,
.dark-section .gold-text,
.dark-section h2 span {
  color: var(--gold-light) !important;
  background: none !important;
  -webkit-text-fill-color: var(--gold-light) !important;
}

/* === EXPORT SECTION (Symmetrical 2-Column Luxury Layout) === */
.export-section { position: relative; overflow: hidden; background: linear-gradient(135deg, #0B1134 0%, #17245B 100%) !important; }
.dark-section .section-heading,
.dark-section h2 {
  color: #ffffff !important;
}
.dark-section .section-heading span,
.dark-section .gold-text,
.dark-section h2 span {
  color: var(--gold-light) !important;
  background: none !important;
  -webkit-text-fill-color: var(--gold-light) !important;
}

.export-grid {
  display: grid !important;
  grid-template-columns: 1fr 1.05fr !important;
  gap: 36px !important;
  align-items: center !important;
  position: relative !important;
  z-index: 1 !important;
}
.export-content, .export-map {
  display: flex !important;
  flex-direction: column !important;
}
.export-process {
  margin-top: 20px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}
.ep-step {
  display: flex !important;
  align-items: center !important;
  gap: 20px !important;
  padding: 16px 22px !important;
  background: #ffffff !important;
  border-radius: 12px !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.18) !important;
  border-left: 4px solid #F5C518 !important;
  text-align: left !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.ep-step:hover {
  transform: translateX(4px) !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25) !important;
}
.ep-num {
  font-family: 'Cinzel', serif !important;
  font-size: 1.4rem !important;
  font-weight: 800 !important;
  color: #1C3473 !important;
  flex-shrink: 0 !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 10px !important;
  background: rgba(28,52,115,0.08) !important;
  border: 1px solid rgba(28,52,115,0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  line-height: 1 !important;
}
.ep-info {
  text-align: left !important;
}
.ep-info strong {
  display: block !important;
  font-family: 'Cinzel', serif !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #0F1F52 !important; /* Deep Royal Navy — 100% High Contrast & Visible! */
  margin-bottom: 2px !important;
  text-align: left !important;
}
.ep-info p {
  font-size: 0.85rem !important;
  color: #444444 !important; /* Dark Charcoal — 100% High Contrast & Visible! */
  font-weight: 500 !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  text-align: left !important;
}

.export-map {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 16px !important;
  padding: 26px !important;
}
.export-countries-title {
  font-family: 'Cinzel', serif !important;
  font-size: 1.35rem !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 4px !important;
}
/* Right side boxes stacked ONE BY ONE vertically */
.export-regions {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin: 20px 0 !important;
}
.region-block {
  background: rgba(255,255,255,0.07) !important;
  border: 1px solid rgba(245,197,24,0.25) !important;
  border-radius: 12px !important;
  padding: 16px 20px !important;
  transition: transform 0.2s ease, background 0.2s ease !important;
}
.region-block:hover {
  background: rgba(245,197,24,0.14) !important;
  border-color: #F5C518 !important;
  transform: translateX(4px) !important;
}
.region-block h4 {
  font-family: 'Cinzel', serif !important;
  font-size: 0.95rem !important;
  font-weight: 700 !important;
  color: #F5C518 !important;
  margin: 0 0 6px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}
.region-block h4 i {
  font-size: 1rem !important;
  color: #F5C518 !important;
  margin-right: 6px !important;
}
.region-block p {
  font-size: 0.82rem !important;
  color: rgba(255,255,255,0.85) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
}
.export-certifications {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin-top: 16px !important;
}
.export-certifications span {
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  color: #F5C518 !important;
  background: rgba(245,197,24,0.12) !important;
  border: 1px solid rgba(245,197,24,0.3) !important;
  padding: 6px 14px !important;
  border-radius: 20px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}
.region-block:hover {
  background: rgba(245,197,24,0.15) !important;
  border-color: var(--gold-light) !important;
}
.region-block h4 {
  font-family: 'Cinzel', serif !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: var(--gold-light) !important;
  margin-bottom: 5px !important;
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.region-block p {
  font-size: 0.84rem !important;
  color: rgba(255,255,255,0.92) !important;
  line-height: 1.5 !important;
  margin: 0 !important;
}

.export-certifications {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin-top: 10px !important;
}
.export-certifications span {
  flex: 1 !important;
  text-align: center !important;
  justify-content: center !important;
}

.export-certifications {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.export-certifications span {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.15);
  border: 1px solid rgba(245,166,35,0.4);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}

/* === TESTIMONIALS === */
.testimonials-section { background: var(--white); overflow: hidden; }
.testimonials-carousel { position: relative; overflow: hidden; }
.testi-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}
.testi-card {
  min-width: 320px;
  flex: 0 0 calc(50% - 0.75rem);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-quote {
  font-size: 0.94rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.4rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--navy), var(--magenta));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.92rem; color: var(--text-dark); }
.testi-author span { font-size: 0.8rem; color: var(--text-light); }
.testi-dots { display: flex; justify-content: center; gap: 10px; margin-top: 2rem; }
.testi-dots .dot { background: var(--border); border-color: var(--border); }
.testi-dots .dot.active { background: var(--navy); border-color: var(--navy); width: 30px; border-radius: 5px; }

/* === CERTIFICATIONS === */
.certs-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 28px 0;
}
.certs-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.certs-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.certs-logos { display: flex; flex-wrap: wrap; gap: 12px; flex: 1; }
.cert-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px 18px;
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
}
.cert-badge i { color: var(--gold); }
.cert-badge:hover { background: rgba(245,166,35,0.15); border-color: rgba(245,166,35,0.4); }

/* === CONTACT SECTION === */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info-col h3, .contact-form-col h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.8rem;
  color: var(--text-dark);
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.2rem; margin-bottom: 2rem; }
.ci-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ci-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-item strong { display: block; font-size: 0.88rem; color: var(--text-dark); margin-bottom: 4px; }
.ci-item p { font-size: 0.86rem; color: var(--text-mid); margin: 0; line-height: 1.6; }

.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 40px; height: 40px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}
.contact-social a:hover { background: var(--gold-dark); transform: translateY(-3px); }

/* Form Styles */
.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 1rem; }
.form-group label { font-size: 0.84rem; font-weight: 600; color: var(--text-dark); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color 0.3s, box-shadow 0.3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-light); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 4px rgba(27,42,107,0.1);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: none;
  margin-top: 1rem;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.4);
  color: #166534;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-success i { color: #16a34a; margin-right: 6px; }

/* === FOOTER === */
.footer { background: var(--dark-bg); color: rgba(255,255,255,0.75); }
.footer {
  background: var(--dark-bg);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 30px !important;
}
.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding: 0 0 3rem;
}
.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.4rem;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--magenta));
  border-radius: 2px;
}
.footer-brand-badge {
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.footer-brand-badge img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-about { font-size: 0.86rem; line-height: 1.7; color: rgba(255,255,255,0.7); margin-bottom: 1.5rem; }

.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--magenta); border-color: var(--magenta); color: var(--white); transform: translateY(-3px); }

.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-col ul a i { color: var(--gold-light); font-size: 0.7rem; }
.footer-col ul a:hover { color: var(--gold-light); padding-left: 6px; }

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fci-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.75);
}
.fci-item i {
  color: var(--gold-light);
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); }

/* === BACK TO TOP — PINK BUTTON === */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 48px; height: 48px;
  background: var(--magenta) !important;
  border: 2px solid #ffffff;
  border-radius: 50%;
  color: #ffffff !important;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(233,30,140,0.45);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--magenta-dk) !important;
  color: #ffffff !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 32px rgba(233,30,140,0.6);
}

/* === SCROLL REVEAL ANIMATIONS === */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── Laptops (1025px to 1250px) ── */
@media (max-width: 1250px) and (min-width: 1025px) {
  .nav-inner { padding: 0 1.5rem !important; }
  .nav-logo img { height: 50px; max-width: 100%; }
  .nav-link { padding: 8px 10px; font-size: 0.82rem; gap: 3px; }
  .nav-cta .btn-primary { padding: 10px 18px; font-size: 0.84rem; }
}

/* ── Tablets & Mobile (<= 1024px) — Hamburger & Mobile Drawer ── */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 1.25rem !important; gap: 10px; }
  .nav-logo { flex: 1 1 auto; min-width: 0; max-width: calc(100% - 55px); }
  .nav-logo img { height: 44px; max-width: 100%; width: auto; object-fit: contain; }
  .nav-cta { display: none !important; }
  .hamburger { display: flex !important; flex-shrink: 0; margin-left: auto; }

  /* Slide-out mobile drawer */
  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    transform: translateX(100%);
    width: 85%;
    max-width: 360px;
    height: 100vh;
    background: var(--white);
    box-shadow: -6px 0 40px rgba(14,24,64,0.22);
    overflow-y: auto;
    overflow-x: hidden;
    transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
    padding: 85px 0 2rem;
    z-index: 999;
    text-align: left !important;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu > ul {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 16px;
    width: 100%;
    box-sizing: border-box;
    align-items: stretch;
    text-align: left !important;
  }
  .nav-menu > ul > li {
    width: 100%;
    border-bottom: 1px solid rgba(229,231,235,0.7);
  }
  .nav-menu > ul > li:last-child {
    border-bottom: none;
  }
  .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    border-radius: 8px;
    text-align: left !important;
    background: transparent !important;
  }
  .nav-link:hover, .nav-link.active {
    color: var(--magenta);
    background: rgba(233,30,140,0.06) !important;
  }
  .nav-link i {
    font-size: 0.75rem;
    color: var(--magenta);
    transition: transform 0.3s ease;
  }
  .has-mega.open > .nav-link i {
    transform: rotate(180deg);
  }
}

@media (max-width: 1100px) {
  .services-grid, .products-grid, .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .export-grid, .govt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .about-badge-float { right: 0; }
}

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
  .topbar-left { display: none; }
  .topbar-right { flex-wrap: wrap; gap: 8px; }

  .nav-inner { padding: 0 1rem !important; gap: 8px; }
  .nav-logo img { height: 38px; max-width: calc(100% - 50px); }
  .hamburger { display: flex !important; }

  /* Homepage & Inner Stats Bar: Fully Equal Mobile Responsive Boxes */
  .slide-actions {
    display: none !important; /* Hide slider buttons on mobile to avoid congestion */
  }

  .stats-bar {
    padding: 20px 0 28px !important;
  }
  .stats-inner, .stats-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .stat-divider {
    display: none !important;
  }
  .stat-item, .stats-inner > .stat-item, .stats-grid .stat-item {
    width: 100% !important;
    aspect-ratio: auto !important;
    height: auto !important;
    min-height: 0 !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    gap: 6px !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
  }
  .stat-item > i {
    font-size: 1.5rem !important;
    margin-bottom: 2px !important;
    color: var(--gold-light) !important;
    flex-shrink: 0 !important;
  }
  .stat-num-row {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 2px !important;
    margin-bottom: 2px !important;
  }
  .stat-num, .stats-grid .stat-num {
    font-size: 1.45rem !important;
    line-height: 1 !important;
    text-align: center !important;
  }
  .stat-unit {
    font-size: 0.9rem !important;
  }
  .stat-label {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    white-space: normal !important;
    text-align: center !important;
  }
  .stats-inner > .stat-item:nth-of-type(5),
  .stats-inner > .stat-item:last-child:nth-child(odd),
  .stats-grid > .stat-item:nth-of-type(5),
  .stats-grid > .stat-item:last-child:nth-child(odd) {
    grid-column: auto !important;
    width: 100% !important;
    padding: 12px 18px !important;
  }

  .services-grid, .products-grid, .why-grid { grid-template-columns: 1fr; }
  .govt-grid, .govt-stats-col { grid-template-columns: 1fr; }
  .govt-departments { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .testi-card { flex: 0 0 90%; }
  .form-row { grid-template-columns: 1fr; }
  .section-pad { padding: 50px 0; }
  .slide-title { font-size: 2rem; }

  /* About Golden I Minerals Section Mobile Styling */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .about-img-frame img {
    height: 260px !important;
    min-height: 260px !important;
  }
  .about-badge-float {
    bottom: 10px !important;
    right: 8px !important;
    padding: 8px 12px !important;
  }
  .about-badge-float .badge-num {
    font-size: 1.4rem !important;
  }
  .about-badge-float .badge-text {
    font-size: 0.70rem !important;
  }
  .about-mini-stats {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 4px !important;
    padding: 8px 6px !important;
  }
  .ams-item strong {
    font-size: 0.92rem !important;
  }
  .ams-item span {
    font-size: 0.62rem !important;
  }
  .left-ctas {
    flex-direction: row !important;
    gap: 8px !important;
  }
  .left-ctas .btn-primary, .left-ctas .btn-secondary {
    padding: 10px 10px !important;
    font-size: 0.80rem !important;
  }
  .about-checklist {
    gap: 8px !important;
    margin: 16px 0 8px 0 !important;
  }
  .acl-item {
    padding: 10px 12px !important;
    font-size: 0.84rem !important;
  }

  /* Global Trade & Exports Section Mobile Styling */
  .export-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .export-process {
    gap: 10px !important;
    margin-top: 12px !important;
  }
  .ep-step {
    padding: 12px 14px !important;
    gap: 12px !important;
  }
  .ep-num {
    width: 34px !important;
    height: 34px !important;
    font-size: 1.1rem !important;
  }
  .ep-info strong {
    font-size: 0.88rem !important;
  }
  .ep-info p {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
  }
  .export-map {
    padding: 16px 14px !important;
  }
  .export-countries-title {
    font-size: 1.15rem !important;
  }
  .export-regions {
    gap: 10px !important;
    margin: 12px 0 !important;
  }
  .region-block {
    padding: 12px 14px !important;
  }
  .region-block h4 {
    font-size: 0.86rem !important;
    flex-wrap: wrap !important;
    gap: 4px !important;
  }
  .region-block p {
    font-size: 0.76rem !important;
    line-height: 1.3 !important;
  }
  .export-certifications {
    gap: 6px !important;
    margin-top: 10px !important;
  }
  .export-certifications span {
    padding: 4px 10px !important;
    font-size: 0.68rem !important;
  }
}

/* ── Small Mobile Portrait (480px / 375px) ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .nav-inner { padding: 0 0.75rem !important; gap: 6px; }
  .nav-logo img { height: 32px; max-width: calc(100% - 48px); }
  .hamburger { width: 40px; height: 40px; font-size: 1.15rem; }
  .topbar-right .topbar-btn { display: none; }
  .topbar-right a[aria-label] { width: 28px; height: 28px; font-size: 0.75rem; }
  .hero-slider { height: 60vh; min-height: 360px; }
  .slide-content { padding: 0 14px; }
  .slide-title { font-size: clamp(1.3rem, 7vw, 2rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .slider-nav { gap: 8px; }
  .slider-dot { width: 8px; height: 8px; }
}

/* =============================================
   DROPDOWN MENU — VERTICAL, SHOW ON HOVER ONLY
   ============================================= */

/* DEFAULT: fully hidden */
.mega-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  transform: translateY(-8px);
  min-width: 240px;
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid #e0e6f0;
  box-shadow: 0 12px 40px rgba(27,42,107,0.16);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0.25s;
  z-index: 9999;
  padding: 6px;
}

/* HOVER STATE: show the menu */
.has-mega:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0s linear 0s;
}

/* Remove width overrides — all same width now */
.mega-menu.mega-wide { min-width: 240px; }
.mega-menu.mega-sm  { min-width: 220px; }

/* VERTICAL stack layout */
.mega-inner {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Each item — horizontal icon + text side by side */
.mega-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 7px;
  color: #3D4F6E;
  font-size: 0.87rem;
  font-weight: 600;
  line-height: 1.3;
  border: 1px solid transparent;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.mega-item:hover {
  background: linear-gradient(135deg, rgba(27,42,107,0.07), rgba(245,166,35,0.06));
  border-color: #e0e6f0;
  color: #1B2A6B;
  padding-left: 18px;
}

/* Small square icon */
.mega-item i {
  font-size: 0.95rem;
  color: #D4880E;
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: linear-gradient(135deg, rgba(245,166,35,0.13), rgba(233,30,140,0.08));
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.mega-item:hover i {
  background: linear-gradient(135deg, #1B2A6B, #243580);
  color: #F5A623;
}

/* Accent line on left when hovered */
.mega-item {
  border-left: 3px solid transparent;
}
.mega-item:hover {
  border-left-color: #F5A623;
}

/* Mobile: accordion mega menu */
@media (max-width: 1024px) {
  .mega-menu {
    position: static !important;
    transform: none !important;
    min-width: 0 !important;
    width: 100%;
    box-shadow: none;
    border: none;
    border-radius: 0;
    background: #f0f4fc;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: max-height 0.4s ease;
  }
  .has-mega.open > .mega-menu { max-height: 600px; }
  .mega-inner { padding: 6px; gap: 2px; }
  .mega-item { padding: 10px 12px; font-size: 0.84rem; }
}

/* =============================================
   RESPONSIVE IMPROVEMENTS — ALL BREAKPOINTS
   ============================================= */

/* ── Mobile (768px) ── */
@media (max-width: 768px) {
  /* Topbar */
  .topbar-left { display: none; }
  .topbar { padding: 6px 0; }
  .topbar-inner { justify-content: center; }
  .topbar-right { gap: 10px; }

  /* Logo */
  .nav-logo img { height: 56px; }

  /* Hero slider */
  .hero-slider { height: 70vh; min-height: 420px; }
  .slide-title  { font-size: clamp(1.5rem, 6vw, 2.4rem); }
  .slide-sub    { font-size: 0.9rem; }
  .slide-actions { flex-direction: column; align-items: flex-start; gap: 10px; }
  .slide-actions .btn-primary,
  .slide-actions .btn-outline { width: auto; min-width: 160px; text-align: center; justify-content: center; }

  /* About section on homepage */
  .about-grid { grid-template-columns: 1fr; }
  .about-img-frame { height: 300px; }
  .about-stats { grid-template-columns: repeat(2,1fr); }

  /* Services & Products grid */
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }

  /* Section titles */
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem); }

  /* Stats bar */
  .stats-ticker-inner { gap: 24px; }

  /* Testimonial */
  .testi-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .contact-grid-home { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top { padding-bottom: 32px; }

  /* Hamburger visible */
  .hamburger { display: flex; }
}

/* ── Small mobile (480px) ── */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .nav-logo img { height: 48px; }
  .topbar-right .topbar-btn { display: none; }
  .topbar-right a[aria-label] { width: 28px; height: 28px; font-size: 0.75rem; }
  .hero-slider { height: 60vh; min-height: 360px; }
  .slide-content { padding: 0 14px; }
  .slide-title { font-size: clamp(1.3rem, 7vw, 2rem); }
  .footer-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .slider-nav { gap: 8px; }
  .slider-dot { width: 8px; height: 8px; }
}

/* =============================================
   MOBILE SLIDER — ARROW BUTTON FIX
   On small screens: smaller buttons, no overlap with text
   ============================================= */
@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
    top: auto;
    bottom: 4.5rem;   /* above the dots */
    transform: none;
  }
  .slider-btn:hover { transform: scale(1.08); }
  .slider-btn.prev { left: 1rem; }
  .slider-btn.next { right: 1rem; }
  .slide-actions { flex-direction: column; gap: 10px; }
  .slide-content { padding-bottom: 6rem; } /* make room for buttons at bottom */
}

@media (max-width: 480px) {
  .slider-btn { width: 36px; height: 36px; font-size: 0.8rem; bottom: 4rem; }
  .slider-btn.prev { left: 0.6rem; }
  .slider-btn.next { right: 0.6rem; }
}

/* Ensure hamburger shows as flex (not column) at all mobile sizes */
@media (max-width: 1024px) {
  .hamburger { display: flex !important; }
}
