/* =========================================================
   Global Styles – iSolution Hub Public Web (webapp.css)
   Light, modern, B2B-focused
========================================================= */

:root {
  --ish-primary: #1a7bc9;
  --ish-primary-soft: #e4f1fd;
  --ish-dark: #111827;
  --ish-muted: #6b7280;
  --ish-bg: #f5f7fb;
  --ish-card-bg: #ffffff;
  --ish-radius-lg: 18px;
  --ish-radius-md: 14px;
  --ish-radius-pill: 999px;
  --ish-shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
  --ish-shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --ish-transition-fast: 0.18s ease-out;
  --ish-transition-med: 0.25s ease;
}

/* Reset-ish / base */

html,
body {
  height: 100%;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Poppins",
    "Segoe UI", sans-serif;
  background: var(--ish-bg);
  color: var(--ish-dark);
  text-rendering: optimizeLegibility;
}

/* Make images behave */
img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

/* Links */

a {
  color: var(--ish-primary);
  text-decoration: none;
  transition: color var(--ish-transition-fast);
}

a:hover {
  color: #0f5c9a;
  text-decoration: none;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--ish-dark);
  font-weight: 700;
}

/* Utility spacing */

.section-title {
  font-size: 2.1rem;
  font-weight: 800;
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.7rem;
  }
}

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

.hero-section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background: radial-gradient(circle at top left, #e6f2ff 0, #f5f7fb 45%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 260px;
  height: 260px;
  background: rgba(26, 123, 201, 0.12);
  filter: blur(12px);
  border-radius: 50%;
  pointer-events: none;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1rem;
  color: var(--ish-muted);
  margin-top: 0.9rem;
  max-width: 32rem;
}

.hero-image {
  max-width: 460px;
  transform: translateY(8px);
}

@media (max-width: 991.98px) {
  .hero-section {
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    margin-inline: auto;
  }

  .hero-image {
    margin-top: 2rem;
    max-width: 360px;
  }
}

/* Buttons tweaks */

.btn-dark {
  border-radius: var(--ish-radius-pill);
  padding-inline: 1.8rem;
  padding-block: 0.7rem;
  font-weight: 600;
  box-shadow: var(--ish-shadow-sm);
  border: none;
}

.btn-dark:hover {
  box-shadow: var(--ish-shadow-soft);
  transform: translateY(-1px);
}

.btn-outline-primary {
  border-radius: var(--ish-radius-pill);
  border-width: 1.5px;
  font-weight: 600;
}

/* =========================================================
   SERVICES GRID
========================================================= */

.services-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.services-section .row {
  margin-top: 0.5rem;
}

.service-card {
  background: var(--ish-card-bg);
  border-radius: var(--ish-radius-lg);
  padding: 1.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.16);
  transition: transform var(--ish-transition-med),
    box-shadow var(--ish-transition-med),
    border-color var(--ish-transition-med),
    background var(--ish-transition-med);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ish-shadow-soft);
  border-color: rgba(26, 123, 201, 0.3);
  background: linear-gradient(
    135deg,
    #ffffff 0,
    #f4f7ff 35%,
    #ffffff 100%
  );
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--ish-muted);
  margin-bottom: 0.7rem;
}

.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.8rem;
  background: radial-gradient(circle at top left, #1a7bc9 0, #0f5c9a 45%, #0f172a 100%);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.35);
}

.service-icon i {
  font-size: 1.25rem;
}

.service-icon .ups-icon,
.service-icon .small-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ish-primary);
}

.service-link:hover {
  color: #0f5c9a;
}

/* Mobile tweaks for services */
@media (max-width: 767.98px) {
  .service-card {
    padding: 1.3rem 1.2rem;
  }

  .service-card h3 {
    font-size: 1.05rem;
  }
}

/* =========================================================
   VISION SECTION
========================================================= */

.vision-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.vision-section img {
  border-radius: var(--ish-radius-md);
  box-shadow: var(--ish-shadow-sm);
}

.vision-section h2 {
  margin-bottom: 0.8rem;
}

.vision-section p {
  color: var(--ish-muted);
}

/* =========================================================
   CREATIVE PROCESS
========================================================= */

.creative-process {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.creative-process h2 {
  margin-bottom: 0.8rem;
}

.creative-process p {
  color: var(--ish-muted);
}

/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us-section {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.why-us-section .section-title {
  margin-bottom: 2rem;
}

.why-us-section .col-md-3 {
  background: var(--ish-card-bg);
  border-radius: var(--ish-radius-md);
  padding: 1.5rem 1rem 1.3rem;
  box-shadow: var(--ish-shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.14);
  transition: transform var(--ish-transition-med),
    box-shadow var(--ish-transition-med),
    border-color var(--ish-transition-med);
}

.why-us-section .col-md-3:hover {
  transform: translateY(-4px);
  box-shadow: var(--ish-shadow-soft);
  border-color: rgba(26, 123, 201, 0.28);
}

.why-us-section h5 {
  margin-top: 0.4rem;
  margin-bottom: 0.3rem;
}

.why-us-section p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: var(--ish-muted);
}

.why-us-section dotlottie-player {
  width: 120px;
  height: 120px;
}

/* Mobile stacking for why-us cards */
@media (max-width: 991.98px) {
  .why-us-section .row > div {
    margin-bottom: 1rem;
  }
}

/* =========================================================
   GENERIC BLOCKS USED IN OTHER SECTIONS
========================================================= */

/* Simple card-like block for any “article” class used */
.article {
  padding: 0.4rem 0;
}

.article h2 {
  font-weight: 700;
}

.article p {
  color: var(--ish-muted);
}

/* Choose-us circles (where you use bg GIF in a circle etc.) */
.chooseus-col {
  background: var(--ish-card-bg);
  border-radius: var(--ish-radius-lg);
  padding: 1.3rem 1rem 1rem;
  box-shadow: var(--ish-shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.chooseus-col h4 {
  margin-top: 0.6rem;
  margin-bottom: 0.3rem;
}

.chooseus-col p {
  font-size: 0.9rem;
  color: var(--ish-muted);
}

/* For the center circle GIF card */
.cercle-col img {
  max-width: 220px;
}

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

@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .services-section,
  .vision-section,
  .creative-process,
  .why-us-section {
    padding-top: 2.8rem;
    padding-bottom: 2.8rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 2.4rem;
    padding-bottom: 2.4rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }
}

/* =========================================================
   SMALL HELPERS (OPTIONAL)
========================================================= */

.text-muted-soft {
  color: var(--ish-muted) !important;
}

/* Spacer classes (if needed) */
.section-pad-y {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

/* =========================================================
   NEW HERO – MATCHES iSolutionHub 3D INFINITY LOGO
========================================================= */

.ish-hero {
  margin-top: 3rem;
  padding: 4.5rem 0 4.2rem;
  color: var(--ish-dark);
}

@media (max-width: 991.98px) {
  .ish-hero {
    padding: 3.2rem 0 3rem;
    text-align: center;
  }
}

/* Background: gradient mesh + subtle grid */
.ish-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(0, 148, 255, 0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255, 140, 50, 0.18), transparent 55%),
    linear-gradient(135deg, #f5f7fb 0%, #ffffff 50%, #f3f7ff 100%);
  z-index: -2;
}

.ish-hero-bg::after {
  content: "";
  position: absolute;
  inset: 12%;
  background-image: linear-gradient(
      to right,
      rgba(148, 163, 184, 0.20) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      rgba(148, 163, 184, 0.16) 1px,
      transparent 1px
    );
  background-size: 36px 36px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  z-index: -1;
}

/* Text side */

.ish-hero-logo-mark {
  width: 52px;
  height: 52px;
}

.ish-hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #0369a1;
  font-weight: 600;
}

.ish-hero-title {
  font-size: 2.7rem;
  line-height: 1.1;
  font-weight: 800;
}

.ish-hero-gradient {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9, #ff8c32);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ish-hero-subtitle {
  font-size: 1rem;
  color: var(--ish-muted);
  max-width: 32rem;
}

@media (max-width: 991.98px) {
  .ish-hero-title {
    font-size: 2.1rem;
  }

  .ish-hero-subtitle {
    margin-inline: auto;
  }
}

/* Buttons matching logo */

.ish-btn-primary {
  border-radius: var(--ish-radius-pill);
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
  border: none;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(15, 108, 191, 0.35);
  transform: translateY(0);
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out,
              filter 0.18s ease-out;
}

.ish-btn-primary:hover {
  box-shadow: 0 18px 40px rgba(15, 108, 191, 0.45);
  transform: translateY(-1px);
  filter: brightness(1.04);
}

.ish-btn-ghost {
  border-radius: var(--ish-radius-pill);
  border: 1.5px solid rgba(15, 23, 42, 0.12);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Chips under hero */

.ish-hero-chips {
  max-width: 34rem;
}

.ish-chip {
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.45);
  white-space: nowrap;
}

/* Right side: floating visual */

.ish-hero-visual {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.ish-hero-orbit {
  position: absolute;
  border-radius: 999px;
  border: 1.4px dashed rgba(148, 163, 184, 0.7);
  inset: 10%;
}

.ish-hero-orbit--outer {
  transform: rotate(-8deg);
}

.ish-hero-orbit--inner {
  inset: 22%;
  opacity: 0.7;
  transform: rotate(10deg);
}

/* Infinity-logo pill in the centre */

.ish-hero-logo-pill {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  padding: 0.65rem 1.2rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.92);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.55);
}

.ish-hero-logo-pill img {
  width: 80px;
  height: auto;
}

/* Main glass dashboard card */

.ish-hero-card {
  position: relative;
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.99),
              rgba(241, 245, 249, 0.96));
  border-radius: 22px;
  padding: 1.4rem 1.3rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.55);
  backdrop-filter: blur(14px);
}

.ish-hero-card--main {
  margin-top: 1.4rem;
}

.ish-hero-progress {
  height: 7px;
  border-radius: 999px;
  background-color: rgba(226, 232, 240, 0.9);
  overflow: hidden;
}

.ish-hero-progress .progress-bar {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9, #ff8c32);
}

/* Small floating badges */

.ish-hero-badge {
  position: absolute;
  font-size: 0.78rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.94);
  color: #e5e7eb;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.6);
  white-space: nowrap;
}

.ish-hero-badge--topups {
  top: -6%;
  right: 6%;
}

.ish-hero-badge--ups {
  bottom: -6%;
  left: 6%;
}

.badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  display: inline-block;
}

.badge-dot--blue {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
}

.badge-dot--orange {
  background: linear-gradient(135deg, #ff8c32, #ffb347);
}

@media (max-width: 991.98px) {
  .ish-hero-visual {
    margin-top: 1rem;
  }
}

/* =========================================================
   SECTIONS & CARDS (FOLLOW HERO STYLE)
========================================================= */

.ish-section {
  padding: 3.5rem 0;
}

.ish-section-alt {
  background: radial-gradient(circle at top left,
              rgba(15, 108, 191, 0.04),
              transparent 58%),
              #f5f7fb;
}

.section-header .section-subtitle {
  color: var(--ish-muted);
  max-width: 40rem;
  margin: 0.4rem auto 0;
}

/* Service cards – glass style */

.ish-service-card {
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.98),
              rgba(241, 245, 249, 0.96));
  border-radius: 22px;
  padding: 1.6rem 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(14px);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease,
              border-color 0.2s ease, background 0.2s ease;
}

.ish-service-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at top right,
              rgba(14, 165, 233, 0.12),
              transparent 58%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.ish-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  border-color: rgba(15, 108, 191, 0.6);
}

.ish-service-card:hover::before {
  opacity: 1;
}

.ish-service-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
  background: radial-gradient(circle at top left, #0f6cbf, #0ea5e9 55%, #ff8c32 100%);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(15, 108, 191, 0.4);
}

.ish-service-icon i {
  font-size: 1.3rem;
}

.service-title {
  font-size: 1.12rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.service-text {
  font-size: 0.94rem;
  color: var(--ish-muted);
  margin-bottom: 0.45rem;
}

.service-tags {
  color: rgba(15, 23, 42, 0.7);
}

.service-link {
  font-size: 0.9rem;
  font-weight: 600;
}

/* Generic glass panel (used multiple times) */

.ish-glass-panel {
  background: radial-gradient(circle at top left,
              rgba(255, 255, 255, 0.98),
              rgba(241, 245, 249, 0.98));
  border-radius: 22px;
  padding: 1.5rem 1.4rem;
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
}

/* Logo/brand row for carriers */

.ish-logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}

.ish-logo-pill {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.5);
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

/* UPS image shell */

.ish-image-shell {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.6);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
}

.ish-image-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at bottom right,
              rgba(255, 140, 50, 0.32),
              transparent 60%);
  opacity: 0.8;
  pointer-events: none;
}

/* Info cards (Why / Partner / etc.) */

.ish-info-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.07);
}

.ish-info-card .info-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.ish-info-card .info-text {
  font-size: 0.94rem;
  color: var(--ish-muted);
}

/* Tag cloud */

.ish-tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.ish-tag-cloud span {
  font-size: 0.78rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px dashed rgba(148, 163, 184, 0.8);
  background: rgba(248, 250, 252, 0.9);
}

/* FAQ */

.ish-faq h6,
.ish-faq .h6 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

/* Final CTA */

.ish-cta-final {
  position: relative;
  color: #0b1120;
  padding: 3.2rem 0;
}

.ish-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left, rgba(15, 108, 191, 0.18), transparent 60%),
    radial-gradient(circle at right, rgba(255, 140, 50, 0.18), transparent 60%),
    linear-gradient(90deg, #eef4ff 0%, #ffffff 55%, #fdf5ed 100%);
  z-index: -1;
  opacity: 0.96;
}

/* Small responsive tweaks */

@media (max-width: 767.98px) {
  .ish-section {
    padding: 2.7rem 0;
  }

  .ish-service-card {
    padding: 1.4rem 1.2rem;
  }
}
/* ---------------------------------------------------------
   FOOTER – LIGHT GLASS, BRAND GRADIENT, PREMIUM LOOK
--------------------------------------------------------- */

.ish-footer {
  position: relative;
  padding-top: 3rem;
  color: #0b1120;
  background: transparent;
  min-height: 300px;
  z-index: 1;
}

.ish-footer-bg {
  position: relative;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(15,108,191,0.15), transparent 60%),
    radial-gradient(circle at bottom right, rgba(255,140,50,0.12), transparent 65%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  z-index: -1;
  opacity: 0.95;
}

/* Footer text */
.ish-muted {
  color: rgba(15,23,42,0.65);
}

/* Newsletter input */
.ish-input {
  height: 48px;
  border-radius: 999px;
  padding-left: 1rem;
}

/* Accordion button (mobile) */
.ish-accordion-btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: .5rem 0;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
}

.ish-accordion-btn i {
  transition: transform .25s;
}

.ish-accordion-btn[aria-expanded="true"] i {
  transform: rotate(180deg);
}

@media (min-width: 768px) {
  .ish-accordion-btn { display: none; }
}

/* Social icons */
.ish-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(15,108,191,0.1);
  color: #0b1220;
  font-size: 1rem;
  transition: 0.2s ease;
}

.ish-social a:hover {
  background: rgba(15,108,191,0.2);
  color: #0f6cbf;
}

/* Footer bottom */
.ish-footer-bottom {
  margin-top: 2rem;
  padding: 1rem 0;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(148,163,184,0.25);
}

/* Buttons (match site theme) */
.ish-btn-primary {
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
  border: none;
  height: 48px;
  font-weight: 600;
  color: #fff;
  box-shadow: 0 10px 26px rgba(15,108,191,0.25);
}

.ish-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(15,108,191,0.3);
}

/* NAVBAR BASE */
.ish-nav {
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.65);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 6px 24px rgba(15, 108, 191, 0.10);
  height: 74px;
}

/* LOGO */
.nav-logo {
  height: 50px;
  width: auto;
}

/* NAV LINKS */
.ish-link {
  font-weight: 500;
  padding: 0.6rem 1rem;
  position: relative;
  transition: color .25s ease;
}

.ish-link:hover {
  color: #0f6cbf;
}

/* Underline hover effect */
.ish-link::after {
  content: "";
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #0f6cbf, #0ea5e9);
  position: absolute;
  bottom: 0;
  left: 50%;
  transition: 0.25s ease;
  transform: translateX(-50%);
}

.ish-link:hover::after {
  width: 70%;
}

/* DROPDOWN MENU */
.ish-dropdown {
  border-radius: 14px;
  border: 1px solid rgba(15,108,191,0.15);
  box-shadow: 0 12px 36px rgba(15,108,191,0.16);
}

.ish-dropdown .dropdown-item:hover {
  background: rgba(15,108,191,0.08);
}

/* BUTTONS */
.ish-btn-primary {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
  border: none;
  border-radius: 999px;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(15,108,191,0.25);
}

.ish-btn-outline {
  border-radius: 999px;
  border: 2px solid #0f6cbf;
  font-weight: 600;
  color: #0f6cbf !important;
}

.ish-btn-outline:hover {
  background: rgba(15,108,191,0.1);
}

/* =========================================================
   INTERNATIONAL COURIER & CARGO PAGE
   Mesh globe hero + glass panel
========================================================= */

.ish-cargo-page {
  background: #f5f7fb;
}

/* Hero */
.ish-hero-cargo {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.20), transparent 60%),
    radial-gradient(circle at bottom right, rgba(251, 146, 60, 0.20), transparent 65%),
    linear-gradient(135deg, #020617 0%, #020617 32%, #020617 100%);
  position: relative;
  overflow: hidden;
}

.ish-hero-cargo::before,
.ish-hero-cargo::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.5;
  pointer-events: none;
}

.ish-hero-cargo::before {
  width: 340px;
  height: 340px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.65), transparent 60%);
}

.ish-hero-cargo::after {
  width: 260px;
  height: 260px;
  bottom: -120px;
  left: -40px;
  background: radial-gradient(circle at center, rgba(56, 189, 248, 0.55), transparent 60%);
}

.ish-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.9);
}

.ish-hero-title {
  font-size: 2.35rem;
  line-height: 1.1;

}

.ish-hero-subtitle {
  font-size: 0.98rem;
  max-width: 32rem;
  /*color: rgba(226, 232, 240, 0.88);*/
}

.ish-text-gradient {
  background: linear-gradient(135deg, #38bdf8, #a855f7, #f97316);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Pills (shared) */
.ish-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  background: rgba(15, 23, 42, 0.7);
  color: #e5e7eb;
  border: 1px solid rgba(148, 163, 184, 0.45);
}

/* Hero panel: glass globe & stats */
.ish-cargo-hero-panel {
  position: relative;
  border-radius: 24px;
  padding: 1.6rem 1.5rem 1.2rem;
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.92), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.5);
  box-shadow: 0 22px 60px rgba(15, 23, 42, 0.75);
  overflow: hidden;
}

/* orbit halo */
.ish-cargo-orbit {
  position: absolute;
  inset: -30%;
  background:
    radial-gradient(circle at 20% 10%, rgba(56, 189, 248, 0.30), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(59, 130, 246, 0.25), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}

/* abstract globe */
.ish-cargo-globe {
  position: absolute;
  top: -24px;
  right: -18px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 30% 30%, rgba(248, 250, 252, 0.9), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(59, 130, 246, 0.7), transparent 70%),
    radial-gradient(circle at 10% 90%, rgba(56, 189, 248, 0.8), transparent 75%);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.4);
  opacity: 0.95;
}

/* small arcs around globe (orbits) */
.ish-cargo-globe::before,
.ish-cargo-globe::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(15, 23, 42, 0.28);
}

.ish-cargo-globe::before {
  inset: 28px;
  transform: rotate(18deg);
}

.ish-cargo-globe::after {
  inset: 50px 22px;
  transform: rotate(-24deg);
}

/* stats grid */
.ish-cargo-stat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  z-index: 1;
}

.ish-cargo-stat {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.6);
  backdrop-filter: blur(10px);
}

.ish-cargo-stat .label {
  display: block;
  font-size: 0.7rem;
  color: rgba(148, 163, 184, 0.95);
}

.ish-cargo-stat .value {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: #e5e7eb;
}

.ish-cargo-footnote {
  margin-top: 0.85rem;
  color: rgba(148, 163, 184, 0.9);
}

/* Metric cards grid */
.ish-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ish-metric-card {
  padding: 1rem 1rem 0.75rem;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: var(--ish-shadow-sm);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.ish-metric-card .label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ish-muted);
}

.ish-metric-card .value {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.ish-metric-card .note {
  color: var(--ish-muted);
}

/* feature icon circle */
.ish-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
}

/* responsive tweaks */
@media (max-width: 991.98px) {
  .ish-hero-cargo {
    padding-top: 3.4rem;
    padding-bottom: 3.4rem;
    text-align: left;
  }
  .ish-hero-title {
    font-size: 2rem;

  }
  .ish-cargo-hero-panel {
    margin-top: 1.5rem;
  }
  .ish-metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .ish-hero-title {
    font-size: 1.8rem;
  }
  .ish-cargo-stat-grid {
    grid-template-columns: 1fr;
  }
}
.ish-image-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
  border-radius: 18px;
  background: radial-gradient(
    circle at center,
    rgba(13, 110, 253, 0.08),
    transparent 70%
  );
}


.ish-image-wrap img {
  position: relative;
  z-index: 1;
}
/* Service card images */
.ish-service-card img {
  max-height: 200px;
  object-fit: contain;
}
/*{# ========================= PAGE-SPECIFIC CSS (can be moved into webapp.css) ========================= #}*/
.ish-about-advanced {
  background: #f5f7fb;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* HERO */
.about-hero-adv {
  margin-top: .5rem;
  padding-bottom: 2.8rem;
  position: relative;
}
.about-hero-mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(15,108,191,0.22), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255,140,50,0.18), transparent 60%),
    linear-gradient(180deg, #fdfefe 0%, #f5f7fb 55%, #edf2f7 100%);
  z-index: -2;
}
.about-hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: .6;
  z-index: -1;
}
.about-hero-orbit--blue {
  width: 280px;
  height: 280px;
  top: -40px;
  right: 5%;
  background: radial-gradient(circle, rgba(37,99,235,0.3), transparent 60%);
}
.about-hero-orbit--peach {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 0;
  background: radial-gradient(circle, rgba(249,115,22,0.28), transparent 65%);
}

/* 3D cluster */
.hero-3d-cluster {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin-left: auto;
  perspective: 1000px;
}
.hero-3d-card {
  position: absolute;
  left: 0;
  right: 0;
  margin-inline: auto;
  background: rgba(255,255,255,0.9);
  border-radius: 22px;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 16px 40px rgba(15,23,42,0.22);
  backdrop-filter: blur(16px);
  transform-style: preserve-3d;
}
.hero-3d-card--top {
  top: 0;
  transform: translate3d(-18px,-10px,40px) rotateY(-10deg) rotateX(6deg);
}
.hero-3d-card--mid {
  top: 64px;
  transform: translate3d(10px,4px,0) rotateY(7deg) rotateX(-3deg);
}
.hero-3d-card--bottom {
  top: 128px;
  transform: translate3d(-12px,18px,-30px) rotateY(-6deg) rotateX(4deg);
}

/* Story glass block */
.about-glass-story {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(18px);
  border-radius: 26px;
  border: 1px solid rgba(148,163,184,0.3);
  box-shadow: 0 16px 40px rgba(15,23,42,0.12);
}

/* Personas */
.persona-card {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.18);
  box-shadow: 0 10px 26px rgba(15,23,42,0.08);
  padding: 1.4rem 1.3rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.persona-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
  border-color: rgba(14,165,233,0.45);
}

/* Feature stack */
.feature-stack {
  position: relative;
  max-width: 420px;
  margin-left: auto;
}
.feature-stack-card {
  border-radius: 22px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.9rem;
  border: 1px solid rgba(148,163,184,0.32);
  box-shadow: 0 12px 30px rgba(15,23,42,0.16);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
}
.feature-stack-card--primary {
  transform: translateX(-10px);
}
.feature-stack-card--secondary {
  transform: translateX(12px);
}
.feature-stack-card--tertiary {
  transform: translateX(-4px);
}
.stack-label {
  display: inline-block;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: #0f6cbf;
  margin-bottom: .35rem;
}

/* Impact bubbles */
.ish-impact-strip {
  background: radial-gradient(circle at top left, #e0edff, #f5f7fb 60%);
}
.impact-bubble {
  border-radius: 999px;
  padding: 1.4rem 1rem;
  background: rgba(255,255,255,0.92);
  box-shadow: 0 12px 30px rgba(15,23,42,0.14);
  border: 1px solid rgba(148,163,184,0.5);
}

/* Values panel */
.values-panel {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(15,108,191,0.04), rgba(14,165,233,0.08));
  border: 1px solid rgba(148,163,184,0.4);
}

/* Timeline advanced */
.timeline-adv {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline-adv::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, rgba(37,99,235,0.85), rgba(14,165,233,0.1));
}
.timeline-adv-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 1.8rem;
}
.timeline-adv-dot {
  position: absolute;
  left: 9px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
  box-shadow: 0 0 0 5px rgba(37,99,235,0.25);
}
.timeline-adv-content {
  background: #ffffff;
  border-radius: 16px;
  padding: .9rem 1.1rem;
  border: 1px solid rgba(148,163,184,0.24);
}

/* FAQ */
.faq-adv-item + .faq-adv-item {
  margin-top: 1.4rem;
}

/* Final CTA */
.ish-about-final-cta {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  .hero-3d-cluster {
    display: none;
  }
}
/*========================= PAGE-SPECIFIC STYLES Contact-us (later move to webapp.css) =========================*/

.ish-contact-page {
  background: #f5f7fb;
}

/* Shared muted + gradient text */
.ish-muted { color: rgba(15,23,42,0.7); }
.ish-gradient-text {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Chips under hero */
.ish-chip {
  font-size: 0.8rem;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: rgba(148,163,184,0.14);
  color: rgba(15,23,42,0.8);
}

/* HERO */
.ish-contact-hero {
  margin-top: .5rem;
  padding-bottom: 2.7rem;
}
.ish-contact-hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(15,108,191,0.25), transparent 55%),
    radial-gradient(circle at bottom right, rgba(255,140,50,0.18), transparent 60%),
    linear-gradient(180deg, #fdfefe 0%, #f5f7fb 55%, #edf2f7 100%);
  z-index: -3;
}
.ish-contact-hero-orbit {
  position: absolute;
  border-radius: 999px;
  filter: blur(24px);
  opacity: .75;
  z-index: -2;
}
.ish-contact-hero-orbit--blue {
  width: 280px; height: 280px;
  top: -40px; right: 8%;
  background: radial-gradient(circle, rgba(37,99,235,0.35), transparent 60%);
}
.ish-contact-hero-orbit--teal {
  width: 220px; height: 220px;
  bottom: -40px; left: 10%;
  background: radial-gradient(circle, rgba(45,212,191,0.26), transparent 65%);
}
.ish-contact-hero-orbit--amber {
  width: 190px; height: 190px;
  top: 40%; right: -70px;
  background: radial-gradient(circle, rgba(249,115,22,0.32), transparent 60%);
}

/* Glass contact panel on hero */
.ish-contact-glass-panel {
  border-radius: 26px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(148,163,184,0.4);
  box-shadow: 0 18px 42px rgba(15,23,42,0.2);
}
.ish-btn-glass {
  border-radius: 999px;
}

/* Contact cards */
.ish-contact-card {
  border-radius: 20px;
  border: 1px solid rgba(148,163,184,0.22);
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15,23,42,0.12);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.ish-contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(15,23,42,0.22);
  border-color: rgba(14,165,233,0.6);
}

/* Form section background */
.ish-contact-form-section {
  background:
    radial-gradient(circle at top left, rgba(15,108,191,0.11), transparent 55%),
    #f1f5f9;
}

/* Form glass */
.ish-contact-form-glass {
  border-radius: 24px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 18px 40px rgba(15,23,42,0.18);
}

/* Map + partners */
.ish-contact-map-card {
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(148,163,184,0.3);
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(15,23,42,0.13);
}
.ish-contact-partner-grid .ish-partner-chip {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .45rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(148,163,184,0.45);
  box-shadow: 0 10px 26px rgba(15,23,42,0.12);
  font-size: .85rem;
}
.ish-partner-chip img {
  max-height: 22px;
  width: auto;
}
.ish-partner-chip i {
  font-size: 1.05rem;
}

/* Final CTA */
.ish-contact-final-cta {
  background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
}

/* Mobile tweaks */
@media (max-width: 991.98px) {
  .ish-contact-glass-panel { margin-top: .5rem; }
}

/*Page-specific styling to match new hero + glass theme*/

    .voucher-page {
      background: radial-gradient(circle at top left,#e6f2ff 0,#f5f7fb 40%,#ffffff 100%);
    }

    .voucher-hero {
      position: relative;
      padding: 6.5rem 0 3.5rem;
      overflow: hidden;
      color: #0b1120;
    }
    .voucher-hero::before {
      content:"";
      position:absolute;
      inset:-120px -120px auto auto;
      background:
        radial-gradient(circle at top right,rgba(14,165,233,0.28),transparent 60%),
        radial-gradient(circle at bottom left,rgba(248,171,79,0.22),transparent 60%);
      opacity:0.9;
      pointer-events:none;
    }
    .voucher-hero-title {
      font-size:2.3rem;
      font-weight:800;
      letter-spacing:.02em;
    }
    @media (max-width: 767.98px){
      .voucher-hero {
        padding-top:5rem;
        text-align:center;
      }
      .voucher-hero-title {
        font-size:1.8rem;
      }
    }

    .voucher-hero-badge {
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.3rem .75rem;
      border-radius:999px;
      font-size:.8rem;
      background:rgba(15,108,191,0.08);
      color:#0f6cbf;
      border:1px solid rgba(15,108,191,0.25);
    }

    .voucher-hero-sub {
      color:#6b7280;
      max-width:32rem;
    }

    .voucher-glass-panel {
      position:relative;
      background:rgba(255,255,255,0.82);
      border-radius:20px;
      border:1px solid rgba(148,163,184,0.35);
      box-shadow:0 18px 40px rgba(15,23,42,0.18);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      padding:1.4rem 1.5rem;
    }
    .voucher-chip-row {
      display:flex;
      flex-wrap:wrap;
      gap:.45rem;
      margin-bottom:1rem;
    }
    .voucher-chip {
      padding:.25rem .7rem;
      border-radius:999px;
      background:rgba(15,108,191,0.07);
      font-size:.78rem;
      font-weight:500;
      color:#0f172a;
    }
    .voucher-chip.primary {
      background:linear-gradient(135deg,#0f6cbf,#0ea5e9);
      color:#fff;
    }

    .voucher-stat {
      display:flex;
      justify-content:space-between;
      font-size:.8rem;
      color:#6b7280;
      margin-bottom:.2rem;
    }

    .voucher-section {
      padding:3.2rem 0;
    }
    .voucher-section h2.section-title {
      font-size:1.7rem;
      font-weight:700;
    }
    .voucher-section p.lead {
      color:#4b5563;
      max-width:44rem;
    }

    .voucher-card {
      background:#ffffff;
      /*background: linear-gradient(135deg, #0f6cbf, #0ea5e9, #ff8c32);*/
      border-radius:18px;
      padding:1.4rem 1.3rem;
      border:1px solid rgba(148,163,184,0.22);
      box-shadow:0 10px 26px rgba(15,23,42,0.08);
      height:100%;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .voucher-card:hover{
      transform:translateY(-3px);
      border-color:rgba(15,108,191,0.45);
      box-shadow:0 18px 40px rgba(15,23,42,0.12);
    }
    .voucher-card-icon{
      width:34px;
      height:34px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#0f6cbf,#0ea5e9);
      color:#fff;
      margin-bottom:.7rem;
      font-size:1rem;
    }

    .voucher-network-chip {
      display:inline-flex;
      align-items:center;
      padding:.25rem .8rem;
      border-radius:999px;
      font-size:.8rem;
      margin:.18rem;
      background:rgba(15,23,42,0.03);
      border:1px solid rgba(148,163,184,0.35);
    }

    .voucher-step {
      position:relative;
      padding-left:2.4rem;
    }
    .voucher-step-num {
      position:absolute;
      left:0;
      top:0;
      width:1.7rem;
      height:1.7rem;
      border-radius:999px;
      font-size:.85rem;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#0f6cbf,#0ea5e9);
      color:#fff;
      box-shadow:0 8px 18px rgba(15,108,191,0.3);
    }

    .voucher-faq button {
      text-align:left;
      font-weight:500;
    }

    .voucher-cta {
      padding:3rem 0 3.5rem;
      background:radial-gradient(circle at top left, #0f6cbf 0, #0b1120 125%, #020617 100%);
      color:#e5f0ff;
    }
    .voucher-cta h2 {
      font-weight:800;
      font-size:1.9rem;
    }
 /*PAGE-SPECIFIC STYLES (mesh hero + glass, aligned with home/voucher) */
    .intl-page {
      background: radial-gradient(circle at top left,#e6f2ff 0,#f5f7fb 40%,#ffffff 100%);
    }

    .intl-hero {
      position: relative;
      padding: 6.5rem 0 3.5rem;
      overflow: hidden;
      color: #0b1120;
    }
    .intl-hero::before {
      content:"";
      position:absolute;
      inset:-140px -120px auto auto;
      background:
        radial-gradient(circle at top right,rgba(14,165,233,0.28),transparent 60%),
        radial-gradient(circle at bottom left,rgba(248,171,79,0.22),transparent 60%);
      opacity:0.9;
      pointer-events:none;
    }
    .intl-hero-title {
      font-size:2.3rem;
      font-weight:800;
      letter-spacing:.02em;
    }
    .intl-hero-sub {
      color:#6b7280;
      max-width:32rem;
    }
    .intl-hero-badge {
      display:inline-flex;
      align-items:center;
      gap:.4rem;
      padding:.3rem .75rem;
      border-radius:999px;
      font-size:.8rem;
      /*background:rgba(15,108,191,0.08);*/
      /*color:#0f6cbf;*/
      background: linear-gradient(135deg, #0f6cbf, #0ea5e9, #ff8c32);
      color: #fff;
      /*border:1px solid rgba(15,108,191,0.25);*/
    }
    @media (max-width: 767.98px){
      .intl-hero {
        padding-top:5rem;
        text-align:center;
      }
      .intl-hero-title {
        font-size:1.8rem;
      }
      .intl-hero-sub {
        margin-inline:auto;
      }
    }

    .intl-glass-panel {
      position:relative;
      background:rgba(255,255,255,0.85);
      border-radius:20px;
      border:1px solid rgba(148,163,184,0.35);
      box-shadow:0 18px 40px rgba(15,23,42,0.18);
      backdrop-filter:blur(18px);
      -webkit-backdrop-filter:blur(18px);
      padding:1.5rem 1.4rem 1.6rem;
    }
    .intl-chip-row {
      display:flex;
      flex-wrap:wrap;
      gap:.35rem;
      margin-bottom:.75rem;
    }
    .intl-chip {
      padding:.25rem .75rem;
      border-radius:999px;
      font-size:.78rem;
      font-weight:500;
      border:1px solid rgba(148,163,184,0.5);
      background:rgba(15,23,42,0.02);
      color:#0f172a;
    }
    .intl-chip.primary {
      background:linear-gradient(135deg,#0f6cbf,#0ea5e9);
      border:none;
      color:#fff;
    }
    .intl-stat {
      display:flex;
      justify-content:space-between;
      font-size:.8rem;
      color:#6b7280;
      margin-bottom:.2rem;
    }

    .intl-section {
      padding:3.2rem 0;
    }
    .intl-section h2.section-title {
      font-size:1.7rem;
      font-weight:700;
    }
    .intl-section p.lead {
      color:#4b5563;
      max-width:44rem;
    }

    .intl-card {
      background:#ffffff;
      border-radius:18px;
      padding:1.4rem 1.3rem;
      border:1px solid rgba(148,163,184,0.22);
      box-shadow:0 10px 26px rgba(15,23,42,0.08);
      height:100%;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .intl-card:hover{
      transform:translateY(-3px);
      border-color:rgba(15,108,191,0.45);
      box-shadow:0 18px 40px rgba(15,23,42,0.12);
    }
    .intl-card-icon{
      width:34px;
      height:34px;
      border-radius:999px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#0f6cbf,#0ea5e9);
      color:#fff;
      margin-bottom:.7rem;
      font-size:1rem;
    }

    .intl-country-chip {
      display:inline-flex;
      align-items:center;
      padding:.25rem .8rem;
      border-radius:999px;
      font-size:.8rem;
      margin:.18rem;
      background:rgba(15,23,42,0.03);
      border:1px solid rgba(148,163,184,0.35);
    }

    .intl-step {
      position:relative;
      padding-left:2.4rem;
    }
    .intl-step-num {
      position:absolute;
      left:0;
      top:0;
      width:1.7rem;
      height:1.7rem;
      border-radius:999px;
      font-size:.85rem;
      display:flex;
      align-items:center;
      justify-content:center;
      background:linear-gradient(135deg,#0f6cbf,#0ea5e9);
      color:#fff;
      box-shadow:0 8px 18px rgba(15,108,191,0.3);
    }

    .intl-faq button {
      text-align:left;
      font-weight:500;
    }

    .intl-cta {
      padding:3rem 0 3.5rem;
      background:radial-gradient(circle at top left,#0f6cbf 0,#0b1120 125%,#020617 100%);
      color:#e5f0ff;
    }
    .intl-cta h2 {
      font-weight:800;
      font-size:1.9rem;
    }
    .ish-gradient-text {
    background: linear-gradient(135deg, #0f6cbf, #0ea5e9);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .ish-hero-cargo {
    background: linear-gradient(135deg, #0f172a, #020617);
  }
 .ish-hero-title{
    color: #c0c3ca;
  }

 .ish-courier-cta{
    background: radial-gradient(circle at top left, #0f6cbf 0, #0b1120 125%, #020617 100%);
    color: #e5f0ff;
  }
