:root {
  --brand: #0f5b8a;
  --neon-button: #03e9f4;
  --accent: #2bb673;
  --muted: #6b7280;
  --bg: #f7fbfd;
  --card: #ffffff;
  --radius: 12px;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
  --font-sans: 'Rubik', sans-serif;
  --font-serif: 'Cardo', serif;
  /* animation variable  */
  --ease: cubic-bezier(.4, 0, .2, 1);
   --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

/* html {
  scroll-behavior: smooth;
} */

/* section {
  scroll-margin-block: 90px;
} */

* {
  box-sizing: border-box;
}

body {
  
  margin: 0;
  background: var(--bg);
  color: #072033;
  line-height: 1.6;
  /* World map background */
  background-image:
    linear-gradient(120deg,
      rgba(247, 251, 253, 0.94),
      rgba(247, 251, 253, 0.9)),
    url("../images/bowl-full-hot-peppers_1127-112.jpg");

  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
  /* subtle premium feel on desktop */
  min-height: 100vh;
}

.container {
  max-width: 100%;
  margin: auto;
  padding: .5% 2%;
}



/* HEADER */
.site-header {
  background: #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* HEADER ROW */
.container1 {
  max-width: 100%;
  margin: auto;
  padding: 5px 20px;
  
}

.nav-row {
  display: flex;
  align-items: center;
  /* 🔑 KEY FIX */
  justify-content: space-between;
  border-radius: 10px;
  gap: 24px;
}

/* BRAND */
.brand {
  display: flex;
  align-items: center;
  /* 🔑 STRAIGHT LINE */
  gap: 12px;
  text-decoration: none;
  color: #072033;
}

.logo {
  width: 75px;
  height: 75px;
  border-radius: 10px;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-weight: 700;
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand-sub {
  font-size: 0.8rem;
  color: #6b7280;
  white-space: nowrap;
}

/* NAV */
nav {
  position: relative;
}

#sidebar-active {
  display: none;
}

/* DESKTOP LINKS */
.links-container {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links-wrapper {
  display: flex;
  gap: 20px;
}

.nav-link {
  text-decoration: none;
  color: #072033;
  font-weight: 500;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: linear-gradient(to right, #3b82f6, #1e40af);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

/* BASE NAV BUTTON */
.nav-btn {
  background: linear-gradient(90deg, #0f5b8a, #167bb8);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* GLOW EFFECT */
.glow-btn {
  box-shadow: 0 8px 24px rgba(15, 91, 138, 0.35);
}

/* PULSE RING */
.glow-btn::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 3px solid rgba(67, 153, 224, 0.8);
  animation: pulse 1.6s infinite;
  z-index: -1;
}

/* HOVER */
.glow-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(15, 91, 138, 0.5);
}

.glow-btn:hover::before {
  opacity: 1;
}

.glow-btn:hover::after {
  animation: none;
  opacity: 0;
}

/* ANIMATION */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }

  100% {
    transform: scale(8);
    opacity: 0;
  }
}




/* MOBILE */
.open-sidebar-button,
.close-sidebar-button {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

.overlay {
  display: none;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  .open-sidebar-button {
    display: block;
  }

  .links-container {
    position: fixed;
    top: 0;
    right: -100%;
    height: 110vh;
    width: 280px;
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    gap: 24px;
    transition: right 0.3s ease;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #2bb673;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  #sidebar-active:checked~.overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
  }

  #sidebar-active:checked~.links-container {
    right: 0;
  }

  .nav-links-wrapper {
    flex-direction: column;
    gap: 18px;
  }

  .close-sidebar-button {
    display: block;
    align-self: flex-end;
  }

  .logo {
    height: 50px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.75rem;
  }
}



/* BUTTONS */
/* =========================
   ROOT BRAND COLOR
========================= */


/* =========================
   BASE BUTTON
========================= */
.btn {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    box-shadow 0.18s ease;
}

/* lift effect */
.btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

.btn-p {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.18s ease,
    filter 0.18s ease,
    box-shadow 0.18s ease;
}

/* lift effect */
.btn-p:hover {
  transform: translateY(-3px);
  filter: brightness(1.05);
}

/* =========================
   PRIMARY – NEON GLOW
========================= */
.btn.primary {
  background: var(--brand);
  color: #fff;
}

.btn.primary:hover {
  box-shadow:
    0 0 6px var(--br),
    0 0 18px var(--brand),
    0 0 40px rgba(3, 233, 244, 0.7);
}

.btn-p.primary {
  background: var(--brand);
  color: #fff;
}

.btn-p.primary:hover {
  box-shadow:
    0 0 6px var(--br),
    0 0 18px var(--brand),
    0 0 40px rgba(3, 233, 244, 0.7);
}





/* full width primary */
.btn.primary1 {
  background: var(--brand);
  color: #fff;
  width: 100%;
  border-radius: 999px;
  margin-top: 15px;
}

.btn.primary1:hover {
  box-shadow:
    inset 0 0 0 1px var(--brand),
    0 0 10px rgba(3, 233, 244, 0.6);
}

/* =========================
   SECONDARY – SOFT NEON
========================= */
.btn.secondary {
  background: rgba(3, 233, 244, 0.08);
  color: var(--brand);
  border: 1px solid rgba(3, 233, 244, 0.25);
}

.btn.secondary:hover {
  box-shadow:
    0 0 4px var(--brand),
    0 0 14px rgba(3, 233, 244, 0.6);
}

/* =========================
   GHOST – NEON BORDER
========================= */
.btn.ghost {
  background: transparent;
  border-radius: 999px;
  border: 1px solid rgba(3, 233, 244, 0.3);
  color: var(--brand);
}

.btn.ghost:hover {
  box-shadow:
    inset 0 0 0 1px var(--brand),
    0 0 10px rgba(3, 233, 244, 0.6);
}


/* =========================
   OUTLINE – SUBTLE NEON
========================= */
.btn.outline {
  background: transparent;
  border: 1px solid rgba(3, 233, 244, 0.2);
  color: var(--brand);
}

.btn.outline:hover {
  border-color: var(--brand);
  box-shadow:
    0 0 8px rgba(3, 233, 244, 0.45);
}

/* =========================
   ACTIVE & DISABLED
========================= */
.btn:active {
  transform: translateY(-1px);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.6;
  pointer-events: none;
}







/* HERO */
.hero {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 24px;
  padding-bottom: 20px;
  position: relative;
  overflow: hidden;
  scroll-margin-block: 90px;
}

.hero h1 {
  color: var(--brand);
  font-size: 2.2rem;
  margin: 0;
}

.hero h3{
  text-align: center;
  margin-bottom: 10px;
  color: var(--brand);
}
.hero p{
  color: var(--muted);
  margin: 0;
  margin-bottom: 12px;
}
/* World map image + soft brand overlay */
/* Apply background ONLY to hero container */
.hero>.container {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

/* Section */
.trust-section {
    margin-top: clamp(32px, 5vw, 52px);
}

/* Title */
.trust-title {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: black;
    margin-bottom: 22px;
    font-weight: 600;
}

/* Row */
.trust-logos-row {
    display: flex;
    gap: clamp(18px, 3vw, 32px);
    align-items: flex-start;
    overflow-x: auto;
    position: 20px;
}

/* Item */
.trust-item {
    position: relative;
    text-align: center;
    flex-shrink: 0;
    padding-bottom: 8px;
}

/* Circle */
.trust-circle {
    width: clamp(70px, 8vw, 88px);
    height: clamp(70px, 8vw, 88px);
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Logo */
.trust-circle img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
    
    opacity: 0.85;
    transition: all 0.3s ease;
}

/* Name */
.trust-name {
    display: block;
    margin-top: 10px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--muted);
    line-height: 1.3;
    max-width: 130px;
}

/* Tooltip (BELOW) */
.trust-tooltip {
    margin-top: 10px;
    background: #111827;
    color: #ffffff;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 0.75rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(-6px);
    transition: all 0.25s ease;
    pointer-events: none;
    max-width: 240px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

/* Tooltip arrow */
.trust-tooltip::before {
    content: "";
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #111827 transparent;
}

/* Hover */
@media (hover: hover) {
    .trust-item:hover .trust-circle {
        transform: translateY(-4px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }

    .trust-item:hover img {
        filter: grayscale(0%);
        opacity: 1;
    }

    .trust-item:hover .trust-tooltip {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .trust-section {
        text-align: center;
    }

    .trust-logos-row {
        justify-content: center;
    }

    /* Optional: show tooltip always on mobile */
    .trust-tooltip {
        opacity: 1;
        transform: none;
        background: #f9fafb;
        color: #111827;
        box-shadow: none;
    }

    .trust-tooltip::before {
        display: none;
    }
}


/* World map background */
.hero>.container::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(120deg,
      rgba(247, 251, 253, 0.95),
      rgba(247, 251, 253, 0.85)),
    url("../images/bg-image.png");

  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  z-index: -2;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin: 6px 0 16px;
}

.radio {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    cursor: pointer;
}

.radio input {
    accent-color: #2563eb; /* brand blue */
    cursor: pointer;
}

.hidden {
    display: none;
}


@media (max-width: 700px) {
  .hero>.container {
    border-radius: 14px;
  }

  .hero>.container::before {
    background-position: center top;
  }

  .hero>.container::after {
    inset: -45%;
  }
}

/* Animated trade-network glow */
.hero>.container::after {
  content: "";
  position: absolute;
  inset: -30%;

  background:
    radial-gradient(circle at 20% 30%,
      rgba(15, 91, 138, 0.18),
      transparent 45%),
    radial-gradient(circle at 80% 65%,
      rgba(43, 182, 115, 0.16),
      transparent 45%);

  animation: heroContainerGlow 12s ease-in-out infinite alternate;
  z-index: -1;
  pointer-events: none;
}

/* Subtle animation */
@keyframes heroContainerGlow {
  from {
    transform: translateY(0) scale(1);
    opacity: 0.65;
  }

  to {
    transform: translateY(-26px) scale(1.05);
    opacity: 0.9;
  }
}


.eyebrow {
  display: block;
    color: var(--accent-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 12px;
}


.lead p{
      color: var(--text-body);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 20px;
 }

/* Container: column layout with responsive gap */
.actions-wrap {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  /* roomy default gap between chips and actions */
  align-items: flex-start;
}

/* Chips row: allow wrapping, consistent spacing */
.chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  /* keep vertical spacing controlled by .actions-wrap */
}

/* Individual chip style */
.chip {
  background: linear-gradient(90deg, rgba(15, 91, 138, 0.06), rgba(43, 182, 115, 0.04));
  padding: 8px 14px;
  /* slightly larger pill for better tap target */
  border-radius: 999px;
  font-weight: 600;
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(11, 37, 64, 0.03);
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
  cursor: default;
}

/* chip hover/focus (keyboard accessible) */
.chip:hover,
.chip:focus {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(11, 37, 64, 0.08);
  background: linear-gradient(90deg, rgba(15, 91, 138, 0.09), rgba(43, 182, 115, 0.06));
  outline: none;
}

/* Actions row: buttons side-by-side with responsive stacking on narrow screens */
.actions {
  display: flex;
  gap: 12px;
  align-items: center;
  width: 100%;
}

/* Make primary button flexible to avoid overflow on small screens */
.actions .btn.primary {
  min-width: 160px;
  padding: 12px 18px;
  text-align: center;
}

/* Make ghost button less dominant */
.actions .btn.ghost {
  text-align: center;
  padding: 12px 16px;
  border-radius: 999px;
}

/* On very small screens stack the buttons vertically with full width */
@media (max-width: 520px) {
  .actions {
    flex-direction: column;
    gap: 10px;
  }

  .actions .btn {
    width: 100%;
    display: inline-flex;
    justify-content: center;
  }

  .actions-wrap {
    gap: 16px;
  }

  /* reduce vertical gap on compact screens */
}

/* Larger screens — add extra breathing room */
@media (min-width: 1100px) {
  .actions-wrap {
    gap: 36px;
  }

  .chip {
    padding: 10px 16px;
  }

  .actions .btn.primary {
    min-width: 180px;
  }
}

/* CARDS */
.quick-card,
.card {
  background: var(--card);
  
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.quick-card p{
  margin-bottom:10px;
}



/* FORMS */
form label {
  display: block;
  margin-top: 5px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #e6eef6;
  background: transparent;
}

.form-actions {
  display: flex;
  gap: 8px;
  margin-top: 10px; /* Remove margin */
}

/* Animations */
.fade-up,
.slide-left,
.slide-right {
  opacity: 0;
  /* transform: translateY(5px); */
  transition: all 0.8s ease;
}

.slide-left {
  transform: translateX(-40px);
}

.slide-right {
  transform: translateX(40px);
}

.show {
  opacity: 1;
  transform: translate(0);
}





/* SERVICES */
/* ================= SERVICES SECTION ================= */

.services {
  padding: 0% 2% 1% 2%;
  text-align: center;
  background-color: var(--bg);
    border-radius: 10px;
  animation: fadeInUp 1s ease-out forwards;
  scroll-margin-block: 90px;
}

/* ---------- HEADING ---------- */
.services h2 {
  margin-top: 1%;
  text-align: center;
  color: var(--brand);
  font-size: 2.3rem;
  display: inline-block;
  position: relative;
}

.services h2::after {
  content: '';
  position: absolute;
  width: 75%;
  height: 4px;
  background: linear-gradient(to right, #3b82f6, #1e40af);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

/* ---------- SUBTEXT ---------- */
.services .muted {
  max-width: 100%;
  margin: 0 auto 30px;
  line-height: 1.7;
  color: var(--muted);
  text-align: justify;
  text-align-last: center;
}

/* ---------- SUB HEADINGS ---------- */
.services h3 {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
}

/* ================= GRID ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

/* ================= CARD ================= */

.service-card {
  background: var(--card);
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
  /* reveal */
  opacity: 0;
  transform: translateY(30px);
}

.service-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= IMAGE ================= */

.service-image {
  height: 150px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* ================= CONTENT ================= */

.service-content {

  text-align: center;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-content h3 {
  margin-top: 1%;
  
}

.service-text {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-top: 2%;
  padding: 2%;
}

/* ================= EXPANDABLE CONTENT ================= */

.service-more {
  max-height: 0;
  padding: 2%;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition:
    max-height 0.45s ease,
    opacity 0.35s ease,
    margin-top 0.35s ease;
}

.service-more.active {
  max-height: 600px;
  opacity: 1;
  margin-top: 15px;
}

.service-more p {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.7;
  text-align: left;
}

.service-more ul {
  padding-left: 18px;
  margin-top: 10px;
}

.service-more li {
  margin-bottom: 8px;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

/* ================= BUTTON ================= */

.service-content .btn {
  margin-top: auto;
  align-self: center;
  padding: 11px 26px;
  border-radius: 999px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ================= HOVER ================= */

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-content .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(15, 91, 138, 0.35);
}

/* ================= ANIMATION ================= */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RESPONSIVE ================= */

/* Tablets */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .services {
    padding: 18px 4%;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-image {
    height: 180px;
  }

  .services .muted {
    text-align: center;
    text-align-last: center;
  }
}

/* Touch devices */
@media (hover: none) {
  .service-card:hover {
    transform: none;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
  }

  .service-card:hover img {
    transform: none;
  }
}






/* Goal section */
/* Section */
.goal-section {
    position: relative;
    background: #ffffff;
    padding: 40px;
    overflow: hidden;
    scroll-margin-block: 90px;
    border-radius: 10px;
    margin-top: 8px
}

/* Container */
.goal-inner {
    max-width: 1400px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(32px, 6vw, 80px);
}

/* Layout for larger screens */
@media (min-width: 900px) {
    .goal-inner {
        flex-direction: row;
    }
}

/* Image Wrapper */
.goal-image-wrapper {
    width: 100%;
    max-width: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Image */
.main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 30px 0 30px 0;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.main-img:hover {
    transform: translateY(-6px);
}

/* Content */
.goal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

/* Sub heading */
.sub-heading {
    color: var(--accent-gold);
    font-size: clamp(0.7rem, 1vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-left: 24px;
}

.sub-heading::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 2px;
    background: var(--accent-gold);
}

/* Title */
.goal-content h2 {
    font-size: 2.3rem;
    color: var(--brand);
    line-height: 1.2;
    font-weight: 700;
    margin: 0;
}

/* Text */
.text-block {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.text-block p {
    font-size: clamp(0.95rem, 1.4vw, 1.1rem);
    
    color: var(--text-body);
    margin-bottom: 10px;
}

/* Locations */
.hq-locations {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 16px;
    background: #f8fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    max-width: 420px;
}

/* Location item */
.loc {
    flex: 1;
    text-align: center;
}

.loc strong {
    font-size: 1.3rem;
    color: var(--primary-dark);
    display: block;
}

.loc span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-gold);
    font-weight: 600;
}

/* Divider */
.loc-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, #cbd5e1, transparent);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .hq-locations {
        flex-direction: column;
    }

    .loc-divider {
        width: 60%;
        height: 1px;
        background: linear-gradient(to right, transparent, #cbd5e1, transparent);
    }
}








/* ABOUT */


.about-section  {
    scroll-margin-block: 70px;
    overflow: hidden;
}


.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;

}

@media (min-width: 992px) {
    .about-grid { grid-template-columns: 1.2fr 0.8fr; }
}

/* Typography & Content */
.main-title {
    font-size: 2.3rem;
    color: var(--brand);
   margin: 0;   
}

.intro-text {
    color: var(--muted);
    margin: 0;
    margin-bottom: 20px;
    
}

/* Info Cards */
.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
    background: #fff;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.info-card:hover { transform: translateY(-5px); }

.card-icon { font-size: 1.5rem; }

.card-text h4 { margin: 0 0 5px 0; color: var(--primary); }

.card-text p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Visual Side */
.image-stack {
    position: relative;
    width: 100%;
}

.main-img {
    width: 100%;
    border-radius: 30px 100px 30px 30px; /* Modern asymmetric corners */
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.experience-tag {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: var(--primary);
    color: #fff;
    padding: 20px 30px;
    border-radius: 10px;
    font-weight: 600;
    animation: float 4s ease-in-out infinite;
}

/* Smooth Animations */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 1.2s var(--ease-out-expo) forwards;
}

.reveal-stagger > *:nth-child(2) { animation-delay: 0.1s; }
.reveal-stagger > *:nth-child(3) { animation-delay: 0.2s; }
.reveal-stagger > *:nth-child(4) { animation-delay: 0.3s; }

.about-visual {
    opacity: 0;
    transform: scale(0.9) translateX(50px);
    animation: revealRight 1.5s var(--ease-out-expo) 0.4s forwards;
}

@keyframes revealUp {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes revealRight {
    to { opacity: 1; transform: scale(1) translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}



.products-section {
  background: linear-gradient(180deg, #fff, #f8fbff);
  border-radius: 10px;
  scroll-margin-block: 75px;
  padding-bottom: 10px
}

.product-p {
  text-align: left;
  padding: 5px 10px;
  color: var(--muted);
  margin-top: -0.5em;
  margin-bottom: 0;
}

/* SECTION HEADER */
.products-section-header {
  text-align: center;
  padding: 20px;
  margin-top: 10px;
}

.products-section-header h2 {
  font-size: 2.3rem;
  color: var(--brand);
  margin-top: -0.25em;
  margin-bottom: 0; /* Added to remove bottom space */
}

.products-section-header .muted {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

.products-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
  margin-top: -1.5em;
  padding: 0 20px;
}

/* LEFT CONTENT */
.product-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  color: var(--brand);
  margin: 0;
  transition: opacity 0.3s ease;
}

.product-desc {
  max-width: 460px;
  color: var(--muted);
  margin: 0;
  transition: opacity 0.3s ease;
}

/* CAROUSEL */
.products-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(11, 37, 64, 0.12);
}

.carousel-track {
  display: flex;
  transition: transform var(--carousel-transition);
}

.slide {
  min-width: 100%;
  flex-shrink: 0;
}

.slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

/* BUTTONS */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  font-size: 1.625rem;
  cursor: pointer;
  z-index: 5;
  transition: background-color 0.2s ease;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 1);
}

.carousel-btn.prev {
  left: -22px;
}

.carousel-btn.next {
  right: -22px;
}

/* RADIOS */
.carousel-radios {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.carousel-radio {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--brand);
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: transform 0.3s ease;
}

.carousel-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  background: var(--brand);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.35s ease;
}

.carousel-radio.active::after {
  transform: scale(1);
}

/* PROGRESS RING */
.carousel-radio.active::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--brand);
  animation: radioProgress 5s linear forwards;
}

@keyframes radioProgress {
  to {
    transform: rotate(360deg);
  }
}

/* TOOLTIP */
.carousel-radio[data-title] {
  position: relative;
}

.carousel-radio[data-title]:hover::before {
  content: attr(data-title);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  padding: 6px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 10;
}

/* PACKAGING SECTION */
.pack-class-wrapper {
  margin-top: 20px;
  padding: 20px 10px;
  background: var(--bg, #f7fbfd);
  border-radius: 10px;
}

/* HEADER - Also update packaging header h2 */
.pack-class-heading {
  text-align:center;
  font-size: 2.3rem;
  color: var(--brand, #0f5b8a);
  margin-bottom: 0.75em;
  margin-bottom: 0;
  margin-top: 0; /* Added to remove bottom space */
}

.pack-class-subtext {
  max-width: 100%;
  text-align: left;
  margin: 0; 
  color: var(--muted);
}

/* GRID */
.pack-class {
  display: grid;
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
  margin-top: 1%;
}

/* CARD */
.pack-class-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  height: 335px;
  color: #fff;
  background: #000;
  border-radius: 10px;
  box-shadow: 
    0 1px 1px rgba(0, 0, 0, 0.1),
    0 2px 2px rgba(0, 0, 0, 0.1),
    0 4px 4px rgba(0, 0, 0, 0.1),
    0 8px 8px rgba(0, 0, 0, 0.1),
    0 16px 16px rgba(0, 0, 0, 0.1);
  isolation: isolate;
}

/* IMAGE BACKGROUND */
.pack-class-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--card-transition);
  z-index: -1;
}

/* BACKGROUND IMAGES */
.pack-class-card:nth-child(1)::before {
  background-image: url("../images/pack1.jpeg");
}

.pack-class-card:nth-child(2)::before {
  background-image: url("../images/pack9.jpg");
}

.pack-class-card:nth-child(3)::before {
  background-image: url("../images/red-chilli-power.jpg");
}

/* OVERLAY */
.pack-class-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.85) 100%);
  transform: translateY(40%);
  transition: transform calc(var(--card-transition) + 400ms);
  z-index: -1;
}

/* CONTENT */
.pack-class-content {
  position: relative;
  width: 100%;
  padding: 1rem;
  text-align: center;
  transform: translateY(60%);
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.pack-class-content>* {
  opacity: 0;
  transform: translateY(1rem);
  transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
}

.pack-class-content>*:nth-child(1) {
  transition-delay: 0.1s;
}

.pack-class-content>*:nth-child(2) {
  transition-delay: 0.2s;
}

.pack-class-title {
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 1;
  transform: translateY(0);
}

.pack-class-copy {
  font-style: italic;
  font-size: 1.05rem;
}

/* BUTTON */
.pack-class-btn {
  margin-top: 1rem;
  padding: 0.7rem 1.6rem;
  background: #fff;
  color: #000;
  border: none;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pack-class-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* HOVER EFFECTS */
@media (hover: hover) and (pointer: fine) {
  .pack-class-card:hover::before {
    transform: scale(1.05);
  }

  .pack-class-card:hover::after {
    transform: translateY(0);
  }

  .pack-class-card:hover .pack-class-content {
    transform: translateY(0);
  }

  .pack-class-card:hover .pack-class-content>* {
    opacity: 1;
    transform: translateY(0);
  }
}

/* RESPONSIVE */
@media (min-width: 600px) {
  .pack-class {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .products-layout {
    grid-template-columns: 1fr;
  }

  .slide img {
    height: 300px;
  }

  .carousel-btn.prev {
    left: 10px;
  }

  .carousel-btn.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .pack-class-heading {
    font-size: 2rem;
    margin-bottom: 0; /* Ensure bottom space removed on mobile too */
  }
  
  .pack-class-card {
    height: 300px;
  }
}

/* Print styles */
@media print {
  .products-section,
  .pack-class-wrapper {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  
  .pack-class-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}

















/* CONTACT */
#contact {
  scroll-margin-block: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 74fr 26fr; /* 73% form, 27% office */
  gap: 20px;
  margin-top: 10px;
}

#contact h2 {
  font-size: 2.3rem;
  margin: 0;
  color: var(--brand);
}

#contact p {
   margin: 0;
  color: var(--muted);
}
#contact h3 {
  margin: 0;
  color: var(--brand);
}

.office-image {

  max-width: 350px;          /* keeps it elegant */
  text-align: center;
}

.office-image img {
  width: 60%;
  height: 2%;
  border-radius: 14px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* FORM GRID ROWS */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-field {
  display: flex;
  flex-direction: column;
}


/* Inputs consistency */
.contact-form input,
.contact-form textarea {
  width: 100%;
}

.hours h4{
  margin: 0;
}
/* Mobile responsive */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}






/*Certification CSS style */

.certifications-section {
  padding: 20px 20px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  overflow: hidden;
  text-align: center;
  margin-top: 20px;
  border-radius: 10px;
}

/* Title */
.section-title {
  font-size: 2.3rem;
  color: #0b2545;
  margin: 0;
  color: var(--brand);
}

.section-subtitle {
  color: #6b7280;
  margin: 0;
}

/* Slider */
.cert-slider {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
}

/* Track */
.cert-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 26s linear infinite;
}

/* Pause on hover */
.cert-slider:hover .cert-track {
  animation-play-state: paused;
}

/* Card */
.cert-card {
  min-width: 520px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

  display: flex;
  align-items: center;
  gap: 18px;

  transition: transform 0.5s cubic-bezier(.22, .9, .28, 1),
    box-shadow 0.5s ease;
}

.cert-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.14);
}

/* Logo */
.cert-card img {
  width: 72px;
  flex-shrink: 0;
  transition: transform 0.5s ease;
}

.cert-card:hover img {
  transform: rotate(-2deg) scale(1.08);
}

/* Text */
.cert-content {
  text-align: left;
}

.cert-content h4 {
  margin: 0;
  font-size: 1.05rem;
  color: #0b2545;
}

.cert-content p {
  margin: 4px 0 0;
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.4;
}

/* Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .cert-card {
    min-width: 90%;
    flex-direction: column;
    text-align: center;
  }

  .cert-content {
    text-align: center;
  }
}


/* Footer base */
.site-footer {
  position: relative;
  background: linear-gradient(135deg, #0b2540, #103c5d);
  color: #eaf3ff;
  padding: 10px 20px 0;
  overflow: hidden;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.06), transparent 60%);
}


.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  position: relative;
  z-index: 2;
}

.footer-col h3,
.footer-col h4 {
  color: #fff;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.92;
}

.footer-col a {
  color: #9fd3ff;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.promise {
  font-style: italic;
  color: #cce7ff;
}

/* Social icons */
.social-row {
  display: flex;
  gap: 14px;
  margin-top: 16px;
}

/* Circular icon container */
.social-row a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  transition:
    transform 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

/* Icon images */
.social-row img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Hover animation */
.social-row a:hover {
  transform: translateY(-4px) scale(1.08);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.25);
}

.social-row a:hover img {
  transform: scale(1.15);
}

/* ===============================
   Brand Hover Glow Colors
================================ */

.social-row a[href*="wa.me"]:hover {
  background: #25d366;
  box-shadow: 0 0 18px rgba(37, 211, 102, 0.7);
}

.social-row a[href^="mailto"]:hover {
  background: #ea4335;
  box-shadow: 0 0 18px rgba(234, 67, 53, 0.7);
}

.social-row a[href*="instagram"]:hover {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  box-shadow: 0 0 18px rgba(221, 42, 123, 0.7);
}

.social-row a[href*="x.com"]:hover {
  background: #000000;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.8);
}

.social-row a[href*="linkedin"]:hover {
  background: #0a66c2;
  box-shadow: 0 0 18px rgba(10, 102, 194, 0.7);
}

/* ===============================
   Tooltip
================================ */

.social-row a {
  position: relative;
}

.social-row a::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 130%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
}

.social-row a::before {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.85);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.social-row a:hover::after,
.social-row a:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Reveal animation */


.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
  will-change: opacity, transform;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger effect (optional but classy) */
.footer-col:nth-child(1) { transition-delay: 0.1s; }
.footer-col:nth-child(2) { transition-delay: 0.2s; }
.footer-col:nth-child(3) { transition-delay: 0.3s; }
.footer-col:nth-child(4) { transition-delay: 0.4s; }

/* Footer bottom */
.footer-bottom {
  margin-top: 5px;
  padding: 10px;
  text-align: center;
  /* background: rgba(0,0,0,0.25); */
  font-size: 0.85rem;
}


/* ===============================
   Responsive Footer
================================ */

/* Large tablets & small laptops */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .site-footer {
    padding: 40px 20px 0;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .footer-col h3 {
    font-size: 1.05rem;
  }

  .footer-col p {
    font-size: 0.9rem;
  }
}

/* Mobile devices */
@media (max-width: 600px) {
  .site-footer {
    padding: 36px 16px 0;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-col {
    text-align: left;
  }

  .footer-col h3 {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer-col p {
    font-size: 0.88rem;
    line-height: 1.6;
  }

  /* Social icons centered on mobile */
  .social-row {
    justify-content: flex-start;
    margin-top: 14px;
  }

  .social-row a {
    width: 40px;
    height: 40px;
  }

  .social-row img {
    width: 20px;
    height: 20px;
  }

  .footer-bottom {
    font-size: 0.8rem;
    padding: 12px 6px;
    margin-top: 20px;
  }
}

/* Very small screens (320px) */
@media (max-width: 360px) {
  .footer-col p {
    font-size: 0.85rem;
  }

  .footer-col h3 {
    font-size: 0.95rem;
  }

  .social-row {
    gap: 10px;
  }
}



/* Floating WhatsApp */
/* ===============================
   Floating WhatsApp (Advanced)
================================ */
/* ==============================
   WhatsApp Floating Button
   Universal Responsive Version
================================ */

.whatsapp-float {
  position: fixed;
  right: clamp(14px, 2.5vw, 28px);
  bottom: clamp(14px, 3vh, 28px);

  width: clamp(52px, 6vw, 64px);
  height: clamp(52px, 6vw, 64px);

  border-radius: 50%;
  background: #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999;
  cursor: pointer;

  box-shadow:
    0 10px 26px rgba(37, 211, 102, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.15);

  animation:
    floatY 4s ease-in-out infinite,
    ringPulse 2.8s ease-out infinite;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Icon scaling */
.whatsapp-float img {
  width: clamp(26px, 3.5vw, 34px);
  height: clamp(26px, 3.5vw, 34px);
  z-index: 2;
}

/* Hover (desktop only feel) */
.whatsapp-float:hover {
  transform: translateY(-6px) scale(1.05);
  box-shadow:
    0 18px 40px rgba(37, 211, 102, 0.45),
    0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Pulse ring */
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: ring 2.8s infinite;
  z-index: 1;
}

/* ==============================
   Animations
================================ */

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes ring {
  0% {
    transform: scale(1);
    opacity: 0.45;
  }
  70% {
    transform: scale(1.7);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* First load bounce (JS controlled) */
.whatsapp-float.bounce {
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
  }
}

/* ==============================
   Mobile Optimizations
================================ */

@media (max-width: 768px) {
  .whatsapp-float {
    animation:
      floatY 5s ease-in-out infinite;
  }

  .whatsapp-float::after {
    animation: ring 3.5s infinite;
  }
}

/* Safe-area support (iOS notch) */
@supports (bottom: env(safe-area-inset-bottom)) {
  .whatsapp-float {
    bottom: calc(
      clamp(14px, 3vh, 28px) + env(safe-area-inset-bottom)
    );
  }
}

/* Optional hidden state */
.whatsapp-float.hidden {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.85);
}



/* TOAST (will be used by JS) */
.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--brand);
  color: white;
  padding: 12px 18px;
  border-radius: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: .25s;
  z-index: 999;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media(max-width:1000px) {
  .hero {
    grid-template-columns: 1fr 320px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media(max-width:700px) {
  .menu {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .container {
        padding: 16px;
        overflow: hidden;
        
  }
}


/* testing */


/* STATS */

/* =========================================================
   GLOBAL MARKETS SECTION – OPTIMIZED CSS
   ========================================================= */

.global-markets {
  position: relative;
  border-radius: 10px;
  scroll-margin-top: 150px;
  
}



/* Earth container */
.earth-wrap {
  display: inline-flex;
  align-items: center;
  
  position: relative;
}

/* Globe */
.earth {
  display: inline-block;
  transform-origin: 50% 50%;
  animation: earthRotateLTR 12s linear infinite;
}

/* Soft underline */
.earth-wrap::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--brand), transparent);
  opacity: 0.4;
}

/* LEFT ➜ RIGHT rotation */
@keyframes earthRotateLTR {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg); /* negative = left to right */
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .earth {
    animation: none;
  }
}


/* ---------- HEADER ---------- */
.gm-header {
  text-align: center;
  margin-top: 0;
}

.gm-header h2 {
  font-size: 2.3rem;
  color: #0f5b8a;
  margin-bottom: .5rem;
  margin-top: 0;
  
}

.gm-header p {
  max-width: 100%;
  margin: 0 auto;
  
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* ---------- GRID LAYOUT ---------- */
.gm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
  
}

/* ---------- CARD ---------- */
.gm-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 10px 25px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

/* ---------- TITLES ---------- */
.gm-card h3 {
  font-size: 1.4rem;
  color: #0f5b8a;
  margin-bottom: 3px;
  margin-top: 2px;
}

/* ---------- MARKET LIST ---------- */
.gm-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 2rem;
}

.gm-list li {
  /* padding: .85rem 0; */
  border-bottom: 1px dashed #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}

.gm-list span {
  font-weight: 600;
  color: #0f5b8a;
}

.gm-list small {
  font-size: .85rem;
  color: #6b7280;
}

/* ---------- STATS ---------- */
.gm-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 20px;
}

.gm-stat {
  /* background: rgba(255,255,255,.9); */
  border-radius: 14px;
  padding: 2px;
  text-align: center;
  /* box-shadow: 0 10px 30px rgba(0,0,0,.08); */
  transition: transform .35s ease, box-shadow .35s ease;
  position: relative;
  overflow: hidden;
}


.gm-stat strong {
  display: block;
  font-size: clamp(2.2rem, 5vw, 2.7rem);
  color: #2bb673;
  margin-bottom: .3rem;
}

.gm-stat span {
  font-size: .9rem;
  color: #374151;
  letter-spacing: .4px;
}

/* ---------- BENEFITS ---------- */
.gm-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gm-benefits li {
  margin-bottom: 1px;
}

.gm-benefits strong {
  display: block;
  font-size: 1rem;
  color: #0f5b8a;
  margin-bottom: .25rem;
}

.gm-benefits p {
  margin: 0;
  font-size: .95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* =========================================================
   RESPONSIVE BREAKPOINTS
   ========================================================= */

/* Tablets */
@media (max-width: 1024px) {
  .gm-grid {
    grid-template-columns: 1fr;
  }

  .gm-card {
    padding: 2rem;
  }

  .gm-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 640px) {
  .global-markets {
    padding: 4rem 0;
  }

  .gm-header {
    margin-bottom: 2.5rem;
  }

  .gm-card {
    padding: 1.75rem;
  }

  .gm-stats {
    grid-template-columns: 1fr;
  }

  .gm-card h3 {
    font-size: 1.25rem;
  }
}

/* Small Phones */
@media (max-width: 380px) {
  .gm-card {
    padding: 1.5rem;
  }

  .gm-stat strong {
    font-size: 2rem;
  }
}

/***

testing 

**/


        /* Section */
        .gallery-image-section {
          margin-top: 10px;
            width: 100%;
            height: 85vh;
            padding: 0 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            background: rgba(255, 255, 255, 0.9);
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            overflow: hidden;
        }
        /* Title */
        .gallery-image-title {
            font-size: 2.3rem;
            font-weight: 700;
            margin-top: 1%;
            color: var(--brand);
            text-align: center;
            position: relative;
            
        }

        /* Carousel container */
.gallery-image {
    width: 100%;
    margin-top: -2%;
    position: relative;
    overflow: hidden;
    border-radius: 24px;

    background: linear-gradient(
        145deg,
        #ffffff,
        #f1f3f6
    );

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.12),
        inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

        /* Track */
        .gallery-image-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Images */
.gallery-image-track img {
    width: 100%;
    height: 100%;
    max-height: 75vh;
    flex-shrink: 0;

    object-fit: contain;      /* 🔥 keeps original image size */
    background: #f6f7f9;      /* soft neutral backdrop */
    
    display: block;
    user-select: none;
    -webkit-user-drag: none;
}

        /* Buttons */
        .gallery-image-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 56px;
            height: 56px;
            background: rgba(255, 255, 255, 0.9);
            color: #333;
            border: none;
            font-size: 24px;
            cursor: pointer;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            box-shadow: var(--brand);
            z-index: 10;
        }

        .gallery-image-prev {
            left: 20px;
        }

        .gallery-image-next {
            right: 20px;
        }

        .gallery-image-btn:hover {
            background: rgba(255, 255, 255, 1);
            transform: translateY(-50%) scale(1.1);
            /* box-shadow: var(--brand); */
            color: var(--brand);
        }

        /* Dots indicator */
        .gallery-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 5px;
            padding: 10px;
        }

        .gallery-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .gallery-dot.active {
            background: var(--brand);
            transform: scale(1.2);
            border-color: var(--brand);
        }

        .gallery-dot:hover {
            background: #999;
            transform: scale(1.1);
        }

        /* Image counter */
        .image-counter {
            position: absolute;
            bottom: 20px;
            right: 20px;
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            z-index: 10;
            backdrop-filter: blur(4px);
        }

        /* Image caption */
        .image-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
            color: white;
            padding: 80px 20px 20px;
            font-size: 16px;
            text-align: center;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .gallery-image:hover .image-caption {
            opacity: 1;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .gallery-image-btn {
                width: 48px;
                height: 48px;
                font-size: 20px;
                height: 70vh;
            }
            
            .gallery-image-prev {
                left: 15px;
            }
            
            .gallery-image-next {
                right: 15px;
            }
        }

        @media (max-width: 768px) {
            .gallery-image-section {
                padding: 30px 15px;
                border-radius: 20px;
                height: 70vh;
            }
            
            .gallery-image-title {
                margin-bottom: 30px;
            }
            
            .gallery-image {
                border-radius: 16px;
            }
            
            .gallery-image-btn {
                width: 42px;
                height: 42px;
                font-size: 18px;
            }
            
            .image-counter {
                font-size: 13px;
                padding: 6px 12px;
            }
        }

        @media (max-width: 576px) {
            .gallery-image-section {
                padding: 25px 12px;
                height: 70vh;
            }
            
            .gallery-image-title {
                margin-bottom: 25px;
                font-size: 24px;
            }
            
            .gallery-image-btn {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            
            .gallery-dots {
                margin-top: 20px;
            }
            
            .gallery-dot {
                width: 12px;
                height: 12px;
            }
            
            .image-caption {
                font-size: 14px;
                padding: 60px 15px 15px;
            }
        }

        @media (max-width: 400px) {
            .gallery-image-section {
                padding: 20px 10px;
            }
            
            .gallery-image-btn {
                width: 32px;
                height: 32px;
                font-size: 14px;
            }
            
            .gallery-image-prev {
                left: 10px;
            }
            
            .gallery-image-next {
                right: 10px;
            }
            
            .image-counter {
                bottom: 15px;
                right: 15px;
                font-size: 12px;
                padding: 5px 10px;
            }
        }

        /* Touch-friendly improvements */
        .gallery-image-track img {
            user-select: none;
            -webkit-user-drag: none;
        }

        /* Accessibility focus styles */
        .gallery-image-btn:focus,
        .gallery-dot:focus {
            outline: 3px solid var(--brand);
            outline-offset: 2px;
        }