/* =========================================================
   Aseem Visa Solutions — main stylesheet (v2 redesign)
   ========================================================= */

/* ---------- Fonts (self-hosted) ---------- */
body,
html {
  overflow-x: hidden;
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../vendor/fonts/poppins-400.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../vendor/fonts/poppins-500.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../vendor/fonts/poppins-600.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../vendor/fonts/poppins-700.woff2") format("woff2");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../vendor/fonts/poppins-800.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../vendor/fonts/inter-400.woff2") format("woff2");
}

/* ---------- Design tokens — Deep Teal / Coral / Amber ---------- */
:root {
  --deep: #0b3b36;
  /* deep teal ink — dark sections, headings */
  --deep-2: #0f4f48;
  --deep-3: #124840;
  --brand: #12796b;
  /* primary teal */
  --brand-light: #1c9683;
  --coral: #ff6b4a;
  /* primary accent / CTA */
  --coral-dark: #e2532f;
  --amber: #ffb238;
  /* secondary accent */
  --amber-dark: #e89413;
  --ink: #1f2937;
  --muted: #64706f;
  --cream: #fff9f2;
  /* warm section background */
  --cream-2: #fef2e7;
  --white: #ffffff;
  --border: #e7e1d6;

  --font-heading: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --shadow-sm: 0 4px 14px rgba(11, 59, 54, 0.07);
  --shadow-md: 0 12px 30px rgba(11, 59, 54, 0.12);
  --shadow-lg: 0 24px 50px rgba(11, 59, 54, 0.18);
  --shadow-coral: 0 14px 30px rgba(255, 107, 74, 0.35);

  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--deep);
  font-weight: 700;
  margin: 0;
}

p {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--coral);
  color: #fff;
}

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

@media (max-width: 767.98px) {
  .section-pad {
    padding: 64px 0;
  }
}

.text-coral {
  color: var(--coral) !important;
}

.text-amber {
  color: var(--amber) !important;
}

.text-deep {
  color: var(--deep) !important;
}

.bg-deep {
  background-color: var(--deep) !important;
}

.bg-cream {
  background: var(--cream) !important;
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--deep);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
}

/* ---------- Preloader ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-ring {
  width: 64px;
  height: 64px;
  border: 4px solid rgba(255, 107, 74, 0.25);
  border-top-color: var(--coral);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

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

/* ---------- Section eyebrow / heading kit ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--coral-dark);
  background: rgba(255, 107, 74, 0.12);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.eyebrow.on-dark {
  color: var(--amber);
  background: rgba(255, 178, 56, 0.14);
}

.eyebrow i {
  font-size: 0.85rem;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.section-sub {
  max-width: 640px;
  font-size: 1.05rem;
}

.underline-bar {
  width: 60px;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--coral), var(--amber));
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: 50px;
  padding: 12px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-coral {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
  box-shadow: var(--shadow-coral);
}

.btn-coral:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(255, 107, 74, 0.45);
}

.btn-deep {
  background: var(--deep);
  border-color: var(--deep);
  color: #fff;
  margin-top: 15px;
}

.btn-deep:hover {
  background: var(--deep-2);
  border-color: var(--deep-2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light-custom {
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  background: transparent;
}

.btn-outline-light-custom:hover {
  background: #fff;
  color: var(--deep);
  border-color: #fff;
}

.btn-ripple::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.3);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s ease;
  z-index: -1;
}

.btn-ripple:hover::after {
  transform: scaleX(1);
}

/* Checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--ink);
}

.check-list li .chk {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

/* =========================================================
   NAVBAR — floating pill style
   ========================================================= */
.navbar-wrap {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 1030;
  transition: var(--transition);
}

.navbar {
  padding: 4px 22px;
  border-radius: 60px;
  width: 95%;
  margin: auto;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.navbar-wrap.is-scrolled {
  top: 10px;
}

.navbar-wrap.is-scrolled .navbar {
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.98);
}

.navbar-brand img {
  width: 140px;
  transition: var(--transition);
}

.navbar .nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--deep);
  margin: 0 4px;
  padding: 8px 14px !important;
  border-radius: 50px;
  position: relative;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--deep);
  background: rgba(255, 107, 74, 0.12);
}

.navbar .dropdown-menu {
  border: none;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  margin-top: 12px;
}

.navbar .dropdown-item {
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}

.navbar .dropdown-item i {
  color: var(--coral-dark);
}

.navbar .dropdown-item:hover {
  background: var(--cream);
  color: var(--deep);
  transform: translateX(4px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 22px !important;
}

@media (min-width: 992px) {
  .navbar .dropdown:hover>.dropdown-menu {
    display: block;
  }
}

/* Offcanvas mobile menu — slides left to right */
.offcanvas-start.app-offcanvas {
  width: min(300px, 88vw);
  background: var(--deep);
  color: #fff;
}

.app-offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

/* dark-background logo variant — no invert filter (it flattened the mark to white) */
.offcanvas-logo {
  width: 112px;
}

.app-offcanvas .btn-close {
  filter: invert(1) grayscale(100%) brightness(200%);
}

.app-offcanvas .nav-link {
  color: #fff !important;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 10px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.app-offcanvas .nav-link:hover,
.app-offcanvas .nav-link.active {
  background: rgba(255, 107, 74, 0.18);
  color: var(--coral) !important;
  padding-left: 18px !important;
}

.app-offcanvas .dropdown-menu {
  position: static !important;
  transform: none !important;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  width: 100%;
  margin-top: 6px;
  padding: 8px;
  border-radius: 12px;
}

/* countries fit in two compact columns so the CTA stays in view */
.app-offcanvas .country-menu {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}

.app-offcanvas .country-menu.show {
  display: grid;
}

.app-offcanvas .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #dbe7e5;
  font-size: 0.86rem;
  padding: 8px 10px;
  border-radius: 8px;
}

.app-offcanvas .dropdown-item:hover,
.app-offcanvas .dropdown-item:focus {
  background: rgba(255, 107, 74, 0.18);
  color: var(--coral);
}

.app-offcanvas .dropdown-toggle::after {
  float: right;
  margin-top: 8px;
}

/* country flag chips inside both menus */
.menu-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
}

.navbar .country-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* keep long menus usable on short screens */
.app-offcanvas .offcanvas-body {
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 28px;
}

/* =========================================================
   HERO — layered gradient canvas + asymmetric collage
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(900px 520px at 88% 8%, rgba(255, 178, 56, 0.22), transparent 62%),
    radial-gradient(760px 620px at 4% 92%, rgba(18, 121, 107, 0.14), transparent 65%),
    linear-gradient(158deg, #fffaf3 0%, #fff2e4 48%, #eef7f3 100%);
  padding: 190px 0 130px;
  overflow: hidden;
}

/* faint blueprint grid for depth */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(11, 59, 54, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 59, 54, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(75% 65% at 50% 40%, #000 0%, transparent 100%);
  mask-image: radial-gradient(75% 65% at 50% 40%, #000 0%, transparent 100%);
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  width: 460px;
  height: 460px;
  background: rgba(255, 107, 74, 0.18);
  top: -140px;
  right: -110px;
  animation: floatSlow 9s ease-in-out infinite;
}

.hero-glow-2 {
  width: 340px;
  height: 340px;
  background: rgba(18, 121, 107, 0.16);
  bottom: -60px;
  left: -90px;
  animation: floatSlow 11s ease-in-out infinite reverse;
}

/* white wave that blends hero into the next section */
.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 90px;
  display: block;
}

@keyframes floatSlow {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-30px) scale(1.06);
  }
}

.hero-eyebrow-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.9rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0;
}

.hero h1 .accent {
  color: var(--coral);
  position: relative;
  display: inline-block;
  background: linear-gradient(96deg, var(--coral) 0%, #ff8a4a 50%, var(--amber) 115%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 .accent svg {
  position: absolute;
  bottom: -0.16em;
  left: 0;
  width: 100%;
  height: 14px;
  color: rgba(255, 178, 56, 0.75);
  -webkit-text-fill-color: initial;
}

.hero-desc {
  font-size: 1.09rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 500px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
  align-items: center;
}

.btn-lg-cta {
  padding: 15px 30px;
  font-size: 1rem;
}

.call-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--deep);
  color: #fff;
  border-radius: 50px;
  padding: 8px 24px 8px 8px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.call-pill:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 59, 54, 0.35);
}

.call-pill .ico {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.call-pill small {
  display: block;
  font-size: 0.72rem;
  opacity: 0.75;
}

.call-pill strong {
  font-family: var(--font-heading);
  font-size: 1.02rem;
}

/* Hero image collage */
.hero-collage {
  position: relative;
  height: 580px;
}

.hero-collage .img-a,
.hero-collage .img-b {
  position: absolute;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hero-collage .img-a {
  width: 74%;
  height: 62%;
  top: 0;
  right: 0;
  z-index: 2;
  border: 8px solid #fff;
}

.hero-collage .img-b {
  width: 56%;
  height: 46%;
  bottom: 0;
  left: 4%;
  z-index: 3;
  border: 8px solid #fff;
}

.hero-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-collage .ring-deco {
  position: absolute;
  top: 42%;
  left: 2%;
  width: 96px;
  height: 96px;
  border: 3px dashed var(--amber);
  border-radius: 50%;
  animation: spin 20s linear infinite;
  z-index: 1;
}

.hero-collage .dot-deco {
  position: absolute;
  right: -14px;
  bottom: 16%;
  width: 120px;
  height: 110px;
  z-index: 1;
  background-image: radial-gradient(rgba(18, 121, 107, 0.32) 2px, transparent 2px);
  background-size: 16px 16px;
}

.hero-collage .badge-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 13px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 4;
}

.hero-collage .badge-approved {
  top: 8%;
  left: -4%;
  animation: floatY 4s ease-in-out infinite;
}

.hero-collage .badge-countries {
  bottom: 6%;
  right: -2%;
  animation: floatY 5.5s ease-in-out infinite 0.6s;
}

.hero-collage .badge-float .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-collage .badge-float .ico-amber {
  background: var(--amber);
  color: var(--deep);
}

.hero-collage .badge-float strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--deep);
}

.hero-collage .badge-float span {
  font-size: 0.72rem;
  color: var(--muted);
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@media (max-width: 1199.98px) {
  .hero-collage {
    height: 500px;
  }

  .hero-collage .badge-float {
    padding: 11px 14px;
  }
}

@media (max-width: 991.98px) {
  .hero {
    padding: 150px 0 90px;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions,
  .hero-eyebrow-row {
    justify-content: center;
  }

  .hero-collage {
    height: 420px;
    margin-top: 46px;
  }

  .hero-collage .badge-countries {
    display: none;
  }

  .hero-collage .badge-approved {
    left: -2%;
  }
}

@media (max-width: 575.98px) {
  .hero {
    padding: 130px 0 70px;
  }

  .hero-collage {
    height: 320px;
    margin-top: 34px;
  }

  .hero-sec {
    flex-direction: column-reverse;
  }

  .hero-collage .ring-deco,
  .hero-collage .dot-deco,
  .hero-collage .badge-float {
    display: none;
  }

  .hero-actions {
    gap: 12px;
  }

  .call-pill {
    padding: 7px 18px 7px 7px;
  }

  .call-pill strong {
    font-size: 0.92rem;
  }

  .hero-wave svg {
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .hero-glow,
  .hero-collage .ring-deco,
  .hero-collage .badge-float {
    animation: none !important;
  }
}

/* =========================================================
   TRUST / LOGO CLOUD — light band
   ========================================================= */
.trust-strip {
  background: var(--white);
  padding: 34px 0;
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-strip .marquee-track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 22s linear infinite;
}

.trust-strip:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.3333%);
  }
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--deep);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  white-space: nowrap;
  opacity: 0.75;
  transition: var(--transition);
}

.trust-item:hover {
  opacity: 1;
}

.trust-item img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

/* =========================================================
   ABOUT — bento image grid + stat pills
   ========================================================= */
.about-bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.about-bento .cell {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.about-bento .cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-bento .cell:hover img {
  transform: scale(1.08);
}

.about-bento .cell.tall {
  grid-row: span 2;
  height: 500px;
}

.about-bento .cell.accent-panel {
  background: var(--coral);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 26px;
  color: #fff;
}

.about-bento .cell.accent-panel .num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1;
}

.about-bento .cell.accent-panel span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.about-stat-pills {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.about-stat-pills .pill {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
}

.about-stat-pills .pill:hover {
  background: var(--deep);
  transform: translateY(-4px);
}

.about-stat-pills .pill:hover strong,
.about-stat-pills .pill:hover span {
  color: #fff;
}

.about-stat-pills .pill i {
  font-size: 1.3rem;
  color: var(--coral);
}

.about-stat-pills .pill strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--deep);
  font-size: 1.05rem;
}

.about-stat-pills .pill span {
  font-size: 0.76rem;
  color: var(--muted);
}

@media (max-width: 767.98px) {
  .about-bento {
    grid-template-columns: 1fr 1fr;
  }

  .about-bento .cell.tall {
    height: 380px;
  }
}

@media (max-width: 575.98px) {
  .about-bento .cell.tall {
    height: 260px;
  }

  .about-bento .cell.accent-panel {
    padding: 18px;
  }

  .about-bento .cell.accent-panel .num {
    font-size: 1.9rem;
  }
}

/* =========================================================
   WHY CHOOSE — editorial row list (light bg, alternating)
   ========================================================= */
.why-choose-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.why-row {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 30px 10px;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.why-row:first-child {
  border-top: 1px solid var(--border);
}

.why-row:hover {
  background: #fff;
  padding-left: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.why-row .idx {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--border);
  width: 70px;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-row:hover .idx {
  -webkit-text-stroke: 1.5px var(--coral);
}

.why-row .row-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: var(--deep);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.why-row:hover .row-icon {
  background: var(--coral);
  color: #fff;
  transform: rotate(-8deg) scale(1.06);
}

.why-row .row-body {
  flex-grow: 1;
}

.why-row h4 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.why-row p {
  margin: 0;
  max-width: 520px;
}

.why-row .row-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--deep);
  flex-shrink: 0;
  transition: var(--transition);
}

.why-row:hover .row-arrow {
  background: var(--deep);
  color: var(--amber);
  border-color: var(--deep);
  transform: translateX(4px) rotate(-45deg);
}

@media (max-width: 767.98px) {
  .why-row {
    flex-wrap: wrap;
  }

  .why-row .idx {
    display: none;
  }

  .why-row .row-arrow {
    display: none;
  }
}

/* =========================================================
   SERVICES — uniform image box card grid
   ========================================================= */
.img-box-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition);
}

.img-box-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.img-box-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  perspective: 900px;
}

.img-box-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.img-box-card:hover .img-box-media img {
  transform: scale(1.14) rotateZ(-1.5deg);
}

.img-box-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 59, 54, 0.65) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.img-box-card:hover .img-box-media::after {
  opacity: 1;
}

.img-box-flag {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  z-index: 2;
}

.img-box-tag {
  position: absolute;
  top: 18px;
  left: 16px;
  z-index: 2;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.7rem;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.4px;
}

.img-box-body {
  padding: 24px;
}

.img-box-body h5 {
  font-size: 1.12rem;
  margin-bottom: 8px;
}

.img-box-body p {
  font-size: 0.88rem;
  margin: 0 0 14px;
}

.img-box-body .explore-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--deep);
  background: none;
  border: none;
  padding: 0;
}

.img-box-body .explore-link i {
  transition: transform 0.3s ease;
}

.img-box-card:hover .explore-link {
  color: var(--coral-dark);
}

.img-box-card:hover .explore-link i {
  transform: translateX(6px);
}

/* =========================================================
   PROCESS — horizontal timeline
   ========================================================= */
.timeline {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 40px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 16.6667%;
  right: 16.6667%;
  height: 2px;
  background: repeating-linear-gradient(to right, var(--border) 0 10px, transparent 10px 20px);
  z-index: 0;
}

.timeline-row {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.timeline-row .tl-node {
  position: relative;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-family: var(--font-heading);
  font-weight: 800;
  box-shadow: var(--shadow-md);
  z-index: 2;
  border: 5px solid var(--cream);
  margin-bottom: 24px;
  transition: var(--transition);
}

.timeline-row:hover .tl-node {
  background: var(--coral);
  color: #fff;
  transform: scale(1.1);
}

.timeline-row .tl-card {
  width: 100%;
  flex: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.timeline-row:hover .tl-card {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.tl-card h4 {
  font-size: 1.15rem;
  margin: 10px 0 10px;
}

.tl-card .tl-icon {
  font-size: 1.6rem;
  color: var(--coral);
}

@media (max-width: 991.98px) {
  .timeline {
    flex-direction: column;
    gap: 50px;
    max-width: 500px;
    margin: 0 auto;
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    left: 33px;
    right: auto;
    width: 2px;
    height: auto;
    background: repeating-linear-gradient(to bottom, var(--border) 0 10px, transparent 10px 20px);
  }

  .timeline-row {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
    gap: 24px;
  }

  .timeline-row .tl-node {
    flex-shrink: 0;
    margin-bottom: 0;
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
  }
}

@media (max-width: 575.98px) {
  .timeline-row .tl-card {
    padding: 18px;
  }
}

/* =========================================================
   TESTIMONIALS — single large centered slide
   ========================================================= */
.testi-section {
  background: var(--deep);
  position: relative;
  overflow: hidden;
}

.testi-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 178, 56, 0.08);
  top: -200px;
  right: -150px;
}

.testi-big-card {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.testi-big-card .quote-mark {
  font-size: 3.5rem;
  color: var(--coral);
  opacity: 0.5;
  line-height: 1;
}

.testi-big-card .stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 3px;
  margin-bottom: 18px;
}

.testi-big-card p.quote-text {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2.4vw, 1.6rem);
  color: #fff;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 30px;
}

.testi-user-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.testi-user-center img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 3px solid var(--coral);
  object-fit: cover;
}

.testi-user-center strong {
  display: block;
  color: #fff;
  font-family: var(--font-heading);
}

.testi-user-center span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
}

#testimonialCarousel .carousel-indicators {
  position: static;
  margin-top: 40px;
}

#testimonialCarousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  opacity: 1;
}

#testimonialCarousel .carousel-indicators .active {
  background: var(--coral);
  width: 28px;
  border-radius: 6px;
}

/* =========================================================
   CONTACT — overlapping floating card
   ========================================================= */
.contact-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 90px;
}

.contact-info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: -70px;
  position: relative;
  z-index: 3;
}

.contact-info-strip .info-chip {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 240px;
  max-width: 320px;
  transition: var(--transition);
}

.contact-info-strip .info-chip:hover {
  transform: translateY(-6px);
  background: var(--deep);
}

.contact-info-strip .info-chip:hover strong,
.contact-info-strip .info-chip:hover span,
.contact-info-strip .info-chip:hover a {
  color: #fff;
}

.contact-info-strip .info-chip .ico {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--coral);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.contact-info-strip .info-chip strong {
  display: block;
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 0.95rem;
}

.contact-info-strip .info-chip span,
.contact-info-strip .info-chip a {
  font-size: 0.82rem;
  color: var(--muted);
}

.contact-form-wrap {
  background: var(--deep);
  border-radius: 30px;
  padding: 70px 40px 70px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.contact-form-wrap::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 107, 74, 0.12);
  bottom: -150px;
  left: -100px;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
}

.contact-form-card .form-label {
  font-weight: 600;
  color: var(--deep);
  font-size: 0.88rem;
}

.contact-form-card .input-group-text {
  background: var(--cream);
  border-right: none;
  color: var(--coral-dark);
}

.contact-form-card .form-control,
.contact-form-card .form-select {
  border-left: none;
  padding: 12px 14px;
  border-color: var(--border);
}

.contact-form-card .form-control:focus,
.contact-form-card .form-select:focus {
  box-shadow: 0 0 0 4px rgba(255, 107, 74, 0.16);
  border-color: var(--coral);
}

.contact-form-card .input-group:focus-within .input-group-text {
  border-color: var(--coral);
  color: var(--coral-dark);
}

.contact-form-card .input-group {
  transition: var(--transition);
}

.contact-side-text h3,
.contact-side-text p {
  color: #fff;
}

.contact-side-text p {
  color: rgba(255, 255, 255, 0.75);
}

.shake {
  animation: shake 0.4s ease;
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-8px);
  }

  75% {
    transform: translateX(8px);
  }
}

@media (max-width: 767.98px) {
  .contact-info-strip {
    margin-bottom: 24px;
  }

  .contact-form-wrap {
    padding: 40px 20px;
  }

  .contact-form-card {
    padding: 28px 22px;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  background: #082420;
  color: #a9c2bd;
  padding-top: 90px;
}

.site-footer h5 {
  color: #fff;
  font-size: 1.05rem;
  margin-bottom: 22px;
}

.site-footer .footer-logo img {
  width: 155px;
  margin-bottom: 18px;
}

.site-footer p {
  color: #86a39c;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #86a39c;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links a i {
  color: var(--coral);
  font-size: 0.7rem;
}

.footer-links a.addr-link {
  align-items: flex-start;
  line-height: 1.6;
}

.footer-links a.addr-link i {
  margin-top: 5px;
  flex-shrink: 0;
}

.footer-links a:hover {
  color: var(--amber);
  padding-left: 6px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.social-icons a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: var(--transition);
}

.social-icons a:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-5px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 60px;
  padding: 24px 0;
  font-size: 0.85rem;
  color: #628079;
}

.footer-newsletter .form-control {
  border-radius: 50px 0 0 50px;
  border: none;
  padding: 12px 20px;
}

.footer-newsletter .btn {
  border-radius: 0 50px 50px 0;
  padding: 12px 20px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(120deg, var(--coral), var(--amber-dark));
  position: relative;
  overflow: hidden;
}

.cta-banner h3,
.cta-banner p {
  color: #fff;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
}

/* =========================================================
   FLOATING BUTTONS
   ========================================================= */
/* Sits above the back-to-top button, which holds the bottom-right corner. */
.whatsapp-float {
  position: fixed;
  bottom: 92px;
  right: 26px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 10px 26px rgba(37, 211, 102, 0.5);
  z-index: 999;
  animation: pulse 2.4s infinite;
}

.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.back-to-top {
  position: fixed;
  bottom: 26px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--deep);
  color: var(--amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--coral);
  color: #fff;
}

/* =========================================================
   MISC
   ========================================================= */
[data-aos] {
  pointer-events: auto;
}

.badge-soft {
  background: rgba(255, 107, 74, 0.12);
  color: var(--coral-dark);
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 50px;
  display: inline-block;
}

.toast-success {
  border-left: 4px solid var(--brand);
}

/* =========================================================
   INNER PAGES — page header, values, contact detail, FAQ
   ========================================================= */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 190px 0 110px;
  background:
    radial-gradient(700px 420px at 85% 10%, rgba(255, 178, 56, 0.22), transparent 62%),
    radial-gradient(620px 480px at 6% 95%, rgba(18, 121, 107, 0.14), transparent 65%),
    linear-gradient(158deg, #fffaf3 0%, #fff2e4 50%, #eef7f3 100%);
}

.page-hero .hero-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(11, 59, 54, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 59, 54, 0.055) 1px, transparent 1px);
  background-size: 62px 62px;
  -webkit-mask-image: radial-gradient(75% 70% at 50% 40%, #000 0%, transparent 100%);
  mask-image: radial-gradient(75% 70% at 50% 40%, #000 0%, transparent 100%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.3rem);
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
  max-width: 620px;
  margin: 18px auto 0;
}

.page-crumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(11, 59, 54, 0.09);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted);
}

.page-crumb a {
  color: var(--deep);
}

.page-crumb a:hover {
  color: var(--coral);
}

.page-crumb i {
  font-size: 0.7rem;
  opacity: 0.55;
}

.page-hero .hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}

.page-hero .hero-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* value / mission cards */
.value-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 107, 74, 0.35);
  box-shadow: var(--shadow-md);
}

.value-card .ico {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  background: rgba(255, 107, 74, 0.12);
  color: var(--coral);
  margin-bottom: 18px;
  transition: var(--transition);
}

.value-card:hover .ico {
  background: var(--coral);
  color: #fff;
}

.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.value-card p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.96rem;
  line-height: 1.7;
}

/* stat band used on inner pages */
.stat-band {
  background: var(--deep);
  border-radius: 24px;
  padding: 46px 32px;
  color: #fff;
}

.stat-band .stat-item {
  text-align: center;
}

.stat-band .stat-item .num {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
}

.stat-band .stat-item span {
  display: block;
  margin-top: 8px;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
}

/* contact detail cards */
.contact-card {
  height: 100%;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 26px;
  text-align: center;
  transition: var(--transition);
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: rgba(255, 107, 74, 0.35);
}

.contact-card .ico {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  background: rgba(18, 121, 107, 0.1);
  color: var(--brand);
  margin-bottom: 16px;
  transition: var(--transition);
}

.contact-card:hover .ico {
  background: var(--coral);
  color: #fff;
}

.contact-card h5 {
  font-size: 1.02rem;
  margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 0;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--coral);
}

/* map */
.map-wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 8px solid #fff;
  line-height: 0;
}

.map-wrap iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
}

/* FAQ accordion */
.faq-accordion .accordion-item {
  border: 1px solid var(--border);
  border-radius: 16px !important;
  margin-bottom: 14px;
  overflow: hidden;
  background: var(--white);
}

.faq-accordion .accordion-button {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep);
  background: var(--white);
  padding: 20px 22px;
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--coral-dark);
  background: rgba(255, 107, 74, 0.07);
}

.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-accordion .accordion-body {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.75;
  padding: 0 22px 22px;
}

@media (max-width: 991.98px) {
  .page-hero {
    padding: 150px 0 80px;
  }

  .stat-band {
    padding: 34px 20px;
  }

  .map-wrap iframe {
    height: 320px;
  }
}


/* =========================================================
   WORK PERMIT PAGE — zig-zag country sections
   ========================================================= */
.country-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.country-jump a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px 8px 8px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid var(--border);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--deep);
  box-shadow: var(--shadow-sm);
}

.country-jump a img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.country-jump a:hover {
  background: var(--deep);
  color: #fff;
  transform: translateY(-3px);
}

.zigzag {
  padding: 90px 0;
  scroll-margin-top: 110px;
}

.zigzag-list .zigzag:nth-child(even) {
  background: var(--cream);
}

.zigzag-media {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: var(--shadow-lg);
}

.zigzag-media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.zigzag-media:hover img {
  transform: scale(1.06);
}

.zigzag-media .zig-flag {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.zigzag-media .zig-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  background: var(--coral);
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  padding: 7px 15px;
  border-radius: 50px;
}

.zigzag-body .step-no {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(11, 59, 54, 0.08);
  display: block;
  margin-bottom: -14px;
}

.zigzag-body h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 14px;
}

.zigzag-body>p {
  font-size: 1.02rem;
  margin-bottom: 22px;
}

.zig-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.zig-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--deep);
  background: rgba(18, 121, 107, 0.09);
  border-radius: 50px;
  padding: 7px 15px;
}

.zig-facts span i {
  color: var(--brand);
  font-size: 0.85rem;
}

.zigzag-body .check-list {
  margin-bottom: 26px;
}

.zig-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

@media (max-width: 991.98px) {
  .zigzag {
    padding: 56px 0;
    scroll-margin-top: 90px;
  }

  .zigzag-media img {
    height: 300px;
  }

  .zigzag-body .step-no {
    font-size: 2.8rem;
  }
}
@media (max-width: 575.98px) {
    
    .navbar-brand img{
        width:110px;
    }
}
