
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; }

/* ── TOP BAR ── */
.pg-topbar {
  background: #1ab5c1;
  padding: 7px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: #fff;
}
.pg-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pg-topbar-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.pg-topbar-left a:hover { opacity: 0.8; }
.pg-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.pg-topbar-right a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}
.pg-topbar-right a:hover { opacity: 0.75; }
.pg-topbar-right svg { width: 17px; height: 17px; fill: #fff; }
 
/* ── MAIN HEADER ── */
.pg-header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
}
.pg-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}
 
/* LOGO */
.pg-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
}
.pg-logo img {
  height: 54px;
  width: auto;
  display: block;
}
 
/* NAV */
.pg-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.pg-nav a {
  color: #2d3748;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 13px;
  border-radius: 6px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.pg-nav a:hover,
.pg-nav a.active {
  color: #1ab5c1;
  background: rgba(26,181,193,0.07);
}
 
/* HEADER BUTTONS */
.pg-header-btns {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.pg-whatsapp-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.pg-whatsapp-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.pg-whatsapp-btn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
  flex-shrink: 0;
}
.pg-whatsapp-btn-text span {
  display: block;
  font-size: 0.68rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.2;
}
.pg-whatsapp-btn-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}
.pg-write-btn {
  display: inline-flex;
  align-items: center;
  background: #1ab5c1;
  color: #fff;
  text-decoration: none;
  padding: 11px 22px;
  border-radius: 40px;
  font-size: 0.83rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.pg-write-btn:hover {
  background: #159aa5;
  transform: translateY(-1px);
}
 
/* HAMBURGER */
.pg-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  transition: background 0.2s;
  flex-shrink: 0;
}
.pg-hamburger:hover { background: rgba(26,181,193,0.1); }
.pg-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #2d3748;
  border-radius: 3px;
  transition: transform 0.3s, opacity 0.3s;
}
.pg-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.pg-hamburger.open span:nth-child(2) { opacity: 0; }
.pg-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
 
/* MOBILE MENU */
.pg-mobile-menu {
  display: none;
  flex-direction: column;
  background: #fff;
  border-top: 1px solid #e8f0f2;
  padding: 16px 24px 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.pg-mobile-menu.open { display: flex; }
.pg-mobile-menu a {
  color: #2d3748;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid #f0f4f5;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.pg-mobile-menu a:last-of-type { border-bottom: none; }
.pg-mobile-menu a:hover { color: #1ab5c1; }
.pg-mobile-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}
.pg-mobile-btns .pg-whatsapp-btn,
.pg-mobile-btns .pg-write-btn {
  justify-content: center;
  width: 100%;
}
 
/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .pg-nav a { font-size: 0.76rem; padding: 7px 9px; }
  .pg-whatsapp-btn-text strong { font-size: 0.76rem; }
}
 
@media (max-width: 900px) {
  .pg-nav { display: none; }
  .pg-header-btns { display: none; }
  .pg-hamburger { display: flex; }
  .pg-header-inner { padding: 0 20px; }
  .pg-topbar { padding: 6px 20px; font-size: 0.76rem; }
}
 
@media (max-width: 480px) {
  .pg-topbar-right { gap: 12px; }
  .pg-topbar-right svg { width: 15px; height: 15px; }
  .pg-logo img { height: 44px; }
}



/* ══════════════════════════════════════════
   HERO SECTION
══════════════════════════════════════════ */
.ww-hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(135deg, #0b2a3a 0%, #0d3347 30%, #0e4a5c 60%, #1a7a8a 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 0;
}

/* Grid dot pattern overlay — same as reference image */
.ww-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 42px 42px;
  pointer-events: none;
  z-index: 0;
}

/* Subtle radial glow top-right */
.ww-hero::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,181,193,0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.ww-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
  width: 100%;
}

/* ── LEFT CONTENT ── */
.ww-hero-left {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Badge */
.ww-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26,181,193,0.15);
  border: 1px solid rgba(26,181,193,0.45);
  color: #1ab5c1;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  margin-bottom: 26px;
  width: fit-content;
  animation: fadeUp 0.6s ease both;
}
.ww-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1ab5c1;
  flex-shrink: 0;
}

/* Main heading */
.ww-hero-left h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 22px;
  animation: fadeUp 0.6s 0.1s ease both;
}
.ww-hero-left h1 .teal {
  color: #1ab5c1;
  display: block;
}

/* Description */
.ww-hero-desc {
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  animation: fadeUp 0.6s 0.2s ease both;
}

/* Second para */
.ww-hero-desc2 {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.75;
  margin-bottom: 28px;
  animation: fadeUp 0.6s 0.25s ease both;
}

/* Commitment heading */
.ww-commit-title {
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 12px;
  animation: fadeUp 0.6s 0.3s ease both;
}

/* Commitment list */
.ww-commit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 34px;
  animation: fadeUp 0.6s 0.35s ease both;
}
.ww-commit-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}
.ww-commit-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1ab5c1;
  flex-shrink: 0;
}

/* Tagline strip */
.ww-tagline {
  background: rgba(26,181,193,0.12);
  border-left: 3px solid #1ab5c1;
  border-radius: 0 8px 8px 0;
  padding: 10px 16px;
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 34px;
  animation: fadeUp 0.6s 0.4s ease both;
}

/* Pills row */
.ww-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  animation: fadeUp 0.6s 0.45s ease both;
}
.ww-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 9px 18px;
  border-radius: 30px;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  cursor: default;
}
.ww-pill:hover {
  background: rgba(26,181,193,0.22);
  border-color: rgba(26,181,193,0.5);
  transform: translateY(-2px);
}
.ww-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1ab5c1;
  flex-shrink: 0;
}

/* ── RIGHT IMAGE ── */
.ww-hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.7s 0.3s ease both;
}

/* Years badge — top left corner overlapping image */
.ww-years-badge {
  position: absolute;
  top: -18px;
  left: -18px;
  z-index: 3;
  background: linear-gradient(135deg, #1ab5c1 0%, #0d8a95 100%);
  color: #fff;
  width: 130px;
  height: 130px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 12px 36px rgba(26,181,193,0.4);
  animation: popIn 0.7s 0.5s cubic-bezier(.34,1.56,.64,1) both;
  padding: 14px;
}
.ww-years-badge .num {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
}
.ww-years-badge .label {
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.25;
  margin-top: 2px;
}
.ww-years-badge .sub {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.3;
}

/* Image container */
.ww-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.ww-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
}

/* Decorative ring behind image */
.ww-img-ring {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 2px solid rgba(26,181,193,0.2);
  z-index: 0;
  pointer-events: none;
}
.ww-img-ring2 {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(26,181,193,0.1);
  z-index: 0;
  pointer-events: none;
}

/* ══════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes popIn {
  from { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-hero-inner { gap: 50px; padding: 0 40px; }
  .ww-hero-left h1 { font-size: clamp(2rem, 3.5vw, 3rem); }
  .ww-img-wrap img { height: 420px; }
  .ww-years-badge { width: 110px; height: 110px; }
  .ww-years-badge .num { font-size: 2.1rem; }
}

@media (max-width: 768px) {
  .ww-hero {
    min-height: auto;
    padding: 60px 0 70px;
  }
  .ww-hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 24px;
  }
  /* Image comes first on mobile */
  .ww-hero-right { order: -1; }
  .ww-img-wrap img { height: 320px; }
  .ww-years-badge {
    width: 100px;
    height: 100px;
    top: -14px;
    left: -14px;
    border-radius: 14px;
  }
  .ww-years-badge .num { font-size: 1.8rem; }
  .ww-years-badge .label { font-size: 0.78rem; }
  .ww-years-badge .sub { font-size: 0.65rem; }
  .ww-pills { gap: 8px; }
  .ww-pill { font-size: 0.75rem; padding: 8px 14px; }
}

@media (max-width: 480px) {
  .ww-hero-inner { padding: 0 18px; }
  .ww-hero-left h1 { font-size: 1.9rem; }
  .ww-img-wrap img { height: 260px; }
  .ww-pill { font-size: 0.72rem; padding: 7px 12px; }
  .ww-hero-desc { font-size: 0.88rem; }
}

/* ══════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════ */
.ww-stats {
  background: linear-gradient(90deg, #1a6e85 0%, #1ab5c1 100%);
  padding: 56px 40px;
  width: 100%;
}
 
.ww-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
 
/* Divider between items */
.ww-stat-item {
  position: relative;
  padding: 10px 20px;
}
.ww-stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.25);
}
 
.ww-stat-num {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}
 
.ww-stat-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .ww-stats { padding: 48px 24px; }
  .ww-stats-inner { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .ww-stat-item:not(:last-child)::after { display: none; }
  /* Add bottom border between rows on mobile */
  .ww-stat-item:nth-child(1),
  .ww-stat-item:nth-child(2) {
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
  }
}
 
@media (max-width: 400px) {
  .ww-stats-inner { grid-template-columns: 1fr 1fr; gap: 28px 10px; }
  .ww-stat-num { font-size: 2rem; }
  .ww-stat-label { font-size: 0.78rem; }
}
/* ══════════════════════════════════════════
   SERVICES SECTION
══════════════════════════════════════════ */
.ww-svc-section {
  background: #f0f4f7;
  padding: 90px 40px;
  width: 100%;
}
 
/* Section heading */
.ww-sec-hd {
  text-align: center;
  margin-bottom: 60px;
}
.ww-sec-hd h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: #1a2a35;
  line-height: 1.2;
}
.ww-sec-hd h2 span {
  color: #1ab5c1;
}
.ww-sec-hd p {
  color: #5a7080;
  font-size: 0.95rem;
  max-width: 560px;
  margin: 14px auto 0;
  line-height: 1.75;
}
 
/* Grid — 4 cards, 2x2 layout */
.ww-svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  max-width: 900px;
  margin: 0 auto;
}
 
/* Card */
.ww-svc-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 36px 28px 30px;
  border: 1px solid #e2eaee;
  box-shadow: 0 4px 18px rgba(26, 110, 133, 0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}
 
/* Hover lift */
.ww-svc-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 16px 44px rgba(26, 110, 133, 0.14);
}
 
/* Bottom border animation on hover */
.ww-svc-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #1a6e85, #1ab5c1);
  border-radius: 0 0 16px 16px;
  transition: width 0.4s ease;
}
.ww-svc-card:hover::after {
  width: 100%;
}
 
/* Icon box */
.ww-svc-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a6e85 0%, #1ab5c1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 6px 18px rgba(26, 181, 193, 0.28);
}
.ww-svc-icon svg {
  width: 28px;
  height: 28px;
}
 
/* Card title */
.ww-svc-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a35;
  margin-bottom: 12px;
  line-height: 1.35;
}
 
/* Card description */
.ww-svc-card p {
  font-size: 0.85rem;
  color: #5a7080;
  line-height: 1.7;
  margin-bottom: 24px;
}
 
/* Read More button */
.ww-rm {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a6e85;
  text-decoration: none;
  border: 1.5px solid #1a6e85;
  padding: 7px 18px;
  border-radius: 30px;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.ww-rm:hover {
  background: #1ab5c1;
  color: #fff;
  border-color: #1ab5c1;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 640px) {
  .ww-svc-section { padding: 60px 20px; }
  .ww-svc-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 100%;
  }
  .ww-sec-hd { margin-bottom: 40px; }
}

/* ══════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════ */
.ww-global {
  background: #ffffff;
  padding: 90px 60px;
  width: 100%;
}
 
.ww-global-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
 
/* ══════════════════════════════════════════
   LEFT — TEXT CONTENT
══════════════════════════════════════════ */

 
/* Heading */
.ww-global-left h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1a2a35;
  line-height: 1.2;
  margin-bottom: 22px;
}
.ww-global-left h2 span {
  color: #1ab5c1;
  font-style: italic;
  display: block;
}
 
/* Paragraphs */
.ww-global-left p {
  font-size: 0.92rem;
  color: #4a6070;
  line-height: 1.8;
  margin-bottom: 14px;
}
 
/* Feature boxes grid — 2x2 */
.ww-feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
 
/* Single feature box */
.ww-feat-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #f4f8fa;
  border: 1px solid #e0eef3;
  border-left: 3.5px solid #1ab5c1;
  border-radius: 12px;
  padding: 16px 16px;
  transition: transform 0.25s, box-shadow 0.25s, border-left-color 0.25s;
  cursor: default;
}
.ww-feat-box:hover {
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(26, 181, 193, 0.12);
  border-left-color: #1a6e85;
}
 
/* Icon inside feature box */
.ww-feat-ic {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 181, 193, 0.25);
}
.ww-feat-ic svg {
  width: 18px;
  height: 18px;
}
 
/* Feature text */
.ww-feat-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1a2a35;
  margin-bottom: 4px;
  line-height: 1.3;
}
.ww-feat-text span {
  font-size: 0.78rem;
  color: #5a7080;
  line-height: 1.45;
}
 
/* ══════════════════════════════════════════
   RIGHT — IMAGE
══════════════════════════════════════════ */
.ww-global-right {
  position: relative;
}
 
.ww-global-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 110, 133, 0.15);
  position: relative;
}
 
.ww-global-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.ww-global-img-wrap:hover img {
  transform: scale(1.03);
}
 
/* Decorative teal corner accent */
.ww-img-accent {
  position: absolute;
  bottom: -14px;
  right: -14px;
  width: 100px;
  height: 100px;
  border-radius: 18px;
  border: 3px solid rgba(26, 181, 193, 0.3);
  pointer-events: none;
  z-index: 0;
}
.ww-img-accent2 {
  position: absolute;
  bottom: -28px;
  right: -28px;
  width: 140px;
  height: 140px;
  border-radius: 22px;
  border: 2px solid rgba(26, 181, 193, 0.12);
  pointer-events: none;
  z-index: 0;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-global { padding: 70px 40px; }
  .ww-global-inner { gap: 50px; }
  .ww-global-img-wrap img { height: 380px; }
}
 
@media (max-width: 768px) {
  .ww-global { padding: 60px 24px; }
  .ww-global-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  /* Image comes after text on mobile */
  .ww-global-right { order: 1; }
  .ww-global-left  { order: 0; }
  .ww-global-img-wrap img { height: 300px; }
  .ww-feat-grid { gap: 12px; }
}
 
@media (max-width: 500px) {
  .ww-feat-grid { grid-template-columns: 1fr; }
  .ww-global-img-wrap img { height: 240px; }
  .ww-global-left h2 { font-size: 1.6rem; }
}

/* ══════════════════════════════════════════
   KEY FEATURES SECTION
══════════════════════════════════════════ */
.ww-kf {
  position: relative;
  background: linear-gradient(135deg, #0e6e85 0%, #1a9eb0 50%, #1ab5c1 100%);
  padding: 80px 60px;
  overflow: hidden;
  width: 100%;
}
 
/* Subtle circle decoration top-right — same as reference */
.ww-kf::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}
.ww-kf::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.06);
  pointer-events: none;
}
 
.ww-kf-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
 
/* Section Title */
.ww-kf-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 52px;
  letter-spacing: 0.01em;
}
 
/* Cards Grid — 4 columns */
.ww-kf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
 
/* Single Card — glassmorphism */
.ww-kf-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  padding: 30px 24px 28px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.ww-kf-card:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}
 
/* Icon box */
.ww-kf-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: background 0.3s;
}
.ww-kf-card:hover .ww-kf-icon {
  background: rgba(255, 255, 255, 0.28);
}
.ww-kf-icon svg {
  width: 24px;
  height: 24px;
}
 
/* Card Title */
.ww-kf-card h4 {
  font-size: 0.97rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  line-height: 1.3;
}
 
/* Card Description */
.ww-kf-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-kf { padding: 70px 40px; }
  .ww-kf-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
 
@media (max-width: 600px) {
  .ww-kf { padding: 56px 20px; }
  .ww-kf-grid { grid-template-columns: 1fr; gap: 16px; }
  .ww-kf-title { margin-bottom: 36px; }
}


/* ══════════════════════════════════════════
   SECTION
══════════════════════════════════════════ */
.ww-deliver {
  background: #ffffff;
  padding: 90px 60px;
  width: 100%;
}
 
.ww-deliver-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
 
/* ══════════════════════════════════════════
   LEFT — IMAGE
══════════════════════════════════════════ */
.ww-deliver-left {
  position: relative;
}
 
.ww-deliver-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  background: #e8f4f8;
  box-shadow: 0 12px 40px rgba(26, 110, 133, 0.10);
}
 
.ww-deliver-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.ww-deliver-img-wrap:hover img {
  transform: scale(1.02);
}
 
/* ══════════════════════════════════════════
   RIGHT — TEXT
══════════════════════════════════════════ */
 
/* Heading */
.ww-deliver-right h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  font-weight: 800;
  color: #1a2a35;
  line-height: 1.2;
  margin-bottom: 22px;
}
.ww-deliver-right h2 span {
  color: #1ab5c1;
  font-style: italic;
  display: block;
}
 
/* Paragraphs */
.ww-deliver-right p {
  font-size: 0.95rem;
  color: #4a6070;
  line-height: 1.85;
  margin-bottom: 18px;
}
.ww-deliver-right p:last-child {
  margin-bottom: 0;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-deliver { padding: 70px 40px; }
  .ww-deliver-inner { gap: 50px; }
}
 
@media (max-width: 768px) {
  .ww-deliver { padding: 60px 24px; }
  .ww-deliver-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ww-deliver-left  { order: 0; }
  .ww-deliver-right { order: 1; }
}
 
@media (max-width: 480px) {
  .ww-deliver { padding: 50px 18px; }
  .ww-deliver-right h2 { font-size: 1.6rem; }
  .ww-deliver-right p  { font-size: 0.88rem; }
}


/* ══════════════════════════════════════════
   KEY FEATURES SECTION
══════════════════════════════════════════ */
.ww-kf5 {
  position: relative;
  background: linear-gradient(135deg, #0e6e85 0%, #1a9eb0 50%, #1ab5c1 100%);
  padding: 80px 60px;
  overflow: hidden;
  width: 100%;
}
 
/* Decorative circles top-right */
.ww-kf5::before {
  content: '';
  position: absolute;
  top: -130px;
  right: -130px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.ww-kf5::after {
  content: '';
  position: absolute;
  top: -85px;
  right: -85px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
  pointer-events: none;
}
 
.ww-kf5-inner {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}
 
/* Title */
.ww-kf5-title {
  text-align: center;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 52px;
}
 
/* Grid — 5 columns */
.ww-kf5-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
 
/* Single card */
.ww-kf5-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 28px 22px 26px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.ww-kf5-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
 
/* Icon box */
.ww-kf5-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.3s;
}
.ww-kf5-card:hover .ww-kf5-icon {
  background: rgba(255,255,255,0.28);
}
.ww-kf5-icon svg {
  width: 22px;
  height: 22px;
}
 
/* Card title */
.ww-kf5-card h4 {
  font-size: 0.93rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.3;
}
 
/* Card description */
.ww-kf5-card p {
  font-size: 0.81rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ww-kf5 { padding: 70px 40px; }
  .ww-kf5-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
 
@media (max-width: 700px) {
  .ww-kf5 { padding: 56px 24px; }
  .ww-kf5-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .ww-kf5-title { margin-bottom: 36px; }
}
 
@media (max-width: 420px) {
  .ww-kf5-grid { grid-template-columns: 1fr; }
}


/* ══════════════════════════════════════════
   SECTION WRAPPER
══════════════════════════════════════════ */
.ww-bh {
  background: #f0f4f7;
  padding: 90px 60px;
  width: 100%;
}
 
.ww-bh-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
 
/* ══════════════════════════════════════════
   SHARED CARD STYLES
══════════════════════════════════════════ */
.ww-bh-card {
  background: #ffffff;
  border: 1px solid #e2eaee;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 4px 24px rgba(26, 110, 133, 0.07);
}
 
/* Card heading */
.ww-bh-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a2a35;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1.5px solid #e2eaee;
}
 
/* ══════════════════════════════════════════
   BENEFITS — LEFT CARD
══════════════════════════════════════════ */
.ww-benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f4f7;
  transition: transform 0.2s;
}
.ww-benefit-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ww-benefit-item:hover {
  transform: translateX(4px);
}
 
/* Benefit icon */
.ww-ben-ic {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(26, 181, 193, 0.25);
}
.ww-ben-ic svg {
  width: 20px;
  height: 20px;
}
 
/* Benefit text */
.ww-ben-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a2a35;
  margin-bottom: 5px;
  line-height: 1.3;
}
.ww-ben-text p {
  font-size: 0.82rem;
  color: #5a7080;
  line-height: 1.6;
}
 
/* ══════════════════════════════════════════
   HOW IT WORKS — RIGHT CARD
══════════════════════════════════════════ */
.ww-step-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #f0f4f7;
  transition: transform 0.2s;
}
.ww-step-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.ww-step-item:hover {
  transform: translateX(4px);
}
 
/* Step number circle */
.ww-step-num {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(26, 181, 193, 0.25);
}
 
/* Step text */
.ww-step-text h4 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1a2a35;
  margin-bottom: 5px;
  line-height: 1.3;
}
.ww-step-text p {
  font-size: 0.82rem;
  color: #5a7080;
  line-height: 1.6;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-bh { padding: 70px 40px; }
}
 
@media (max-width: 768px) {
  .ww-bh { padding: 60px 24px; }
  .ww-bh-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ww-bh-card { padding: 32px 24px; }
}
 
@media (max-width: 480px) {
  .ww-bh { padding: 50px 16px; }
  .ww-bh-card { padding: 26px 18px; }
  .ww-ben-ic,
  .ww-step-num { width: 38px; height: 38px; min-width: 38px; }
}

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.ww-cta {
  position: relative;
  background: linear-gradient(120deg, #0a1f2e 0%, #0d2d42 50%, #0e3a52 100%);
  padding: 90px 40px;
  text-align: center;
  overflow: hidden;
  width: 100%;
}
 
/* Radial glow top center */
.ww-cta::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,181,193,0.14) 0%, transparent 70%);
  pointer-events: none;
}
 
/* Bottom subtle glow */
.ww-cta::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(26,181,193,0.07) 0%, transparent 70%);
  pointer-events: none;
}
 
.ww-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
 
/* Heading */
.ww-cta-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  margin-bottom: 20px;
}
.ww-cta-inner h2 span {
  color: #1ab5c1;
}
 
/* Subtext */
.ww-cta-inner p {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
 
/* Email link */
.ww-cta-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1ab5c1;
  font-size: 0.97rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 28px;
  transition: opacity 0.2s;
}
.ww-cta-email:hover { opacity: 0.8; }
.ww-cta-email svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
 
/* Contact button */
.ww-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(26,181,193,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.02em;
}
.ww-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(26,181,193,0.5);
}
.ww-cta-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
 
/* Stack email + button vertically centered */
.ww-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 768px) {
  .ww-cta { padding: 70px 24px; }
  .ww-cta-inner h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .ww-cta-inner p { font-size: 0.9rem; }
}
 
@media (max-width: 480px) {
  .ww-cta { padding: 60px 18px; }
  .ww-cta-btn { padding: 13px 32px; font-size: 0.88rem; }
  .ww-cta-email { font-size: 0.88rem; }
}

/* ══════════════════════════════════════════
       WHAT WE DELIVER SECTION
    ══════════════════════════════════════════ */
    .wwd-section {
      position: relative;
      background: linear-gradient(135deg, #0b8fa0 0%, #0d9db0 30%, #0fb3c6 65%, #1ab5c1 100%);
      padding: 80px 20px 70px;
      overflow: hidden;
    }
 
    /* Subtle dot grid overlay */
    .wwd-section::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.10) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
      z-index: 0;
    }
 
    /* Diagonal light sweep top-right */
    .wwd-section::after {
      content: '';
      position: absolute;
      top: -150px;
      right: -150px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, transparent 65%);
      pointer-events: none;
      z-index: 0;
    }
 
    .wwd-inner {
      position: relative;
      z-index: 1;
      max-width: 1180px;
      margin: 0 auto;
    }
 
    /* ── HEADING ── */
    .wwd-title {
      text-align: center;
      font-size: clamp(1.7rem, 4vw, 2.4rem);
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 50px;
      letter-spacing: -0.01em;
    }
 
    /* ── GRID ── */
    .wwd-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-bottom: 44px;
    }
 
    /* ── CARD ── */
    .wwd-card {
      background: rgba(255,255,255,0.13);
      border: 1px solid rgba(255,255,255,0.22);
      border-radius: 16px;
      padding: 28px 24px;
      display: flex;
      align-items: center;
      gap: 18px;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
      cursor: default;
    }
    .wwd-card:hover {
      background: rgba(255,255,255,0.20);
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    }
 
    /* Icon circle */
    .wwd-icon {
      flex-shrink: 0;
      width: 54px;
      height: 54px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.28);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .wwd-icon svg {
      width: 22px;
      height: 22px;
      stroke: #ffffff;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    /* Card label */
    .wwd-card-label {
      font-size: 0.92rem;
      font-weight: 700;
      color: #ffffff;
      line-height: 1.35;
    }
 
    /* ── FOOTER TEXT ── */
    .wwd-footer {
      text-align: center;
    }
    .wwd-footer-note {
      color: rgba(255,255,255,0.85);
      font-size: 0.85rem;
      font-weight: 400;
      margin-bottom: 18px;
    }
 
    /* Country flags row */
    .wwd-countries {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px;
      flex-wrap: wrap;
    }
    .wwd-country {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .wwd-country-code {
      font-size: 0.72rem;
      font-weight: 600;
      color: rgba(255,255,255,0.65);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    .wwd-country-name {
      font-size: 0.82rem;
      font-weight: 600;
      color: #ffffff;
    }
 
    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
 
    /* Tablet: 2 columns */
    @media (max-width: 900px) {
      .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }
      .wwd-section {
        padding: 60px 24px 56px;
      }
    }
 
    /* Mobile: 1 column */
    @media (max-width: 540px) {
      .wwd-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .wwd-section {
        padding: 50px 16px 48px;
      }
      .wwd-title {
        margin-bottom: 36px;
      }
      .wwd-card {
        padding: 22px 18px;
      }
      .wwd-countries {
        gap: 18px;
      }
    }

    /* ══════════════════════════════════════════
       TWO CARDS SECTION
    ══════════════════════════════════════════ */
    .tc-section {
      background: #eef4f7;
      padding: 70px 20px;
    }
 
    .tc-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }
 
    /* ── SHARED CARD BASE ── */
    .tc-card {
      border-radius: 20px;
      padding: 36px 36px 40px;
    }
 
    /* ── LEFT CARD (white) ── */
    .tc-card--light {
      background: #ffffff;
      box-shadow: 0 4px 28px rgba(0,0,0,0.07);
    }
 
    /* ── RIGHT CARD (dark navy) ── */
    .tc-card--dark {
      background: #0d2d3f;
      box-shadow: 0 4px 28px rgba(0,0,0,0.18);
    }
 
    /* ── CARD HEADER ── */
    .tc-card-header {
      display: flex;
      align-items: center;
      gap: 16px;
      padding-bottom: 22px;
      border-bottom: 1px solid rgba(0,0,0,0.08);
      margin-bottom: 10px;
    }
    .tc-card--dark .tc-card-header {
      border-bottom-color: rgba(255,255,255,0.10);
    }
 
    .tc-header-icon {
      flex-shrink: 0;
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: #1ab5c1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .tc-header-icon svg {
      width: 22px;
      height: 22px;
      stroke: #fff;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    .tc-card-title {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1a2e3b;
      line-height: 1.3;
    }
    .tc-card--dark .tc-card-title {
      color: #ffffff;
    }
 
    /* ── LIST ITEMS ── */
    .tc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
    }
 
    .tc-list-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 17px 0;
      border-bottom: 1px solid rgba(0,0,0,0.07);
    }
    .tc-list-item:last-child {
      border-bottom: none;
    }
    .tc-card--dark .tc-list-item {
      border-bottom-color: rgba(255,255,255,0.08);
    }
 
    /* Item icon box */
    .tc-item-icon {
      flex-shrink: 0;
      width: 38px;
      height: 38px;
      border-radius: 9px;
      background: #1ab5c1;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .tc-item-icon svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    /* Light card uses different icons per item */
    .tc-item-icon--a  { background: #1ab5c1; }
    .tc-item-icon--ck { background: #1ab5c1; }
    .tc-item-icon--st { background: #1ab5c1; }
    .tc-item-icon--pl { background: #1ab5c1; }
 
    .tc-item-text {
      font-size: 0.88rem;
      font-weight: 500;
      color: #2d3748;
      line-height: 1.45;
    }
    .tc-card--dark .tc-item-text {
      color: rgba(255,255,255,0.88);
    }
 
    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
 
    /* Tablet */
    @media (max-width: 860px) {
      .tc-inner {
        grid-template-columns: 1fr;
        gap: 22px;
      }
      .tc-section {
        padding: 50px 20px;
      }
    }
 
    /* Mobile */
    @media (max-width: 480px) {
      .tc-card {
        padding: 26px 22px 30px;
      }
      .tc-card-title {
        font-size: 0.97rem;
      }
      .tc-item-text {
        font-size: 0.84rem;
      }
      .tc-section {
        padding: 40px 14px;
      }
    }

    /* ══════════════════════════════════════════
       STRATEGIC SECTION
    ══════════════════════════════════════════ */
    .sha-section {
      background: #ffffff;
      padding: 80px 20px 90px;
    }
 
    .sha-inner {
      max-width: 1180px;
      margin: 0 auto;
    }
 
    /* ── HEADING ── */
    .sha-heading {
      text-align: center;
      font-size: clamp(1.6rem, 3.5vw, 2.3rem);
      font-weight: 800;
      color: #1a2e3b;
      line-height: 1.25;
      margin-bottom: 18px;
    }
    .sha-heading .teal {
      color: #1ab5c1;
    }
 
    .sha-subtext {
      text-align: center;
      font-size: 0.92rem;
      color: #5a7080;
      line-height: 1.75;
      max-width: 520px;
      margin: 0 auto 56px;
    }
 
    /* ── GRID ── */
    .sha-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
 
    /* ── CARD ── */
    .sha-card {
      background: #f4f8fa;
      border-radius: 16px;
      padding: 28px 22px 30px;
      display: flex;
      flex-direction: column;
      gap: 0;
      transition: transform 0.25s, box-shadow 0.25s;
    }
    .sha-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 32px rgba(26,181,193,0.12);
    }
 
    /* Icon */
    .sha-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: #1ab5c1;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      flex-shrink: 0;
    }
    .sha-icon svg {
      width: 22px;
      height: 22px;
      stroke: #ffffff;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
 
    /* Card title */
    .sha-card-title {
      font-size: 0.92rem;
      font-weight: 700;
      color: #1a2e3b;
      line-height: 1.35;
      margin-bottom: 10px;
    }
 
    /* Card description */
    .sha-card-desc {
      font-size: 0.82rem;
      color: #5a7080;
      line-height: 1.7;
      font-weight: 400;
    }
 
    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
 
    /* 2 columns on tablet */
    @media (max-width: 960px) {
      .sha-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }
      .sha-section {
        padding: 60px 20px 70px;
      }
    }
 
    /* 1 column on mobile */
    @media (max-width: 520px) {
      .sha-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }
      .sha-section {
        padding: 48px 14px 56px;
      }
      .sha-subtext {
        margin-bottom: 36px;
      }
    }

    /* ══════════════════════════════════════════
       WHY CHOOSE US SECTION
    ══════════════════════════════════════════ */
    .wcu-section {
      background: #eef4f7;
      padding: 70px 20px;
    }
 
    .wcu-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
      align-items: start;
    }
 
    /* ── SHARED CARD ── */
    .wcu-card {
      background: #ffffff;
      border-radius: 20px;
      padding: 44px 42px 48px;
      box-shadow: 0 4px 24px rgba(0,0,0,0.06);
    }
 
    /* ── CARD TITLE ── */
    .wcu-card-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #1ab5c1;
      margin-bottom: 22px;
      line-height: 1.25;
    }
 
    /* ── LEFT CARD paragraphs ── */
    .wcu-card--left p {
      font-size: 0.88rem;
      color: #3d5260;
      line-height: 1.85;
      margin-bottom: 18px;
    }
    .wcu-card--left p:last-child {
      margin-bottom: 0;
    }
 
    /* ── RIGHT CARD ── */

    .wcu-card--right{
        margin-top: 55px;
    }


    .wcu-card--right p {
      font-size: 0.88rem;
      color: #3d5260;
      line-height: 1.85;
      margin-bottom: 20px;

    }
 
    /* Email row */
    .wcu-email {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      text-decoration: none;
    }
    .wcu-email svg {
      width: 18px;
      height: 18px;
      stroke: #1ab5c1;
      fill: none;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
    .wcu-email span {
      font-size: 0.9rem;
      font-weight: 600;
      color: #1ab5c1;
      transition: opacity 0.2s;
    }
    .wcu-email:hover span { opacity: 0.75; }
 
    /* CTA Button */
    .wcu-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #0d3347;
      color: #ffffff;
      text-decoration: none;
      padding: 14px 28px;
      border-radius: 50px;
      font-size: 0.88rem;
      font-weight: 600;
      margin-top: 8px;
      transition: background 0.2s, transform 0.2s;
      white-space: nowrap;
    }
    .wcu-btn:hover {
      background: #1ab5c1;
      transform: translateY(-2px);
    }
    .wcu-btn svg {
      width: 16px;
      height: 16px;
      stroke: #fff;
      fill: none;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex-shrink: 0;
    }
 
    /* ══════════════════════════════════════════
       RESPONSIVE
    ══════════════════════════════════════════ */
    @media (max-width: 860px) {
      .wcu-inner {
        grid-template-columns: 1fr;
        gap: 22px;
      }
      .wcu-section {
        padding: 50px 20px;
      }
    }
 
    @media (max-width: 480px) {
      .wcu-card {
        padding: 30px 24px 34px;
      }
      .wcu-card-title {
        font-size: 1.1rem;
      }
      .wcu-section {
        padding: 40px 14px;
      }
    }

    /* ════════════════════════════════════
       PAGE HERO BANNER
    ════════════════════════════════════ */
    .about-hero {
      position: relative;
      background: linear-gradient(135deg, #0b2a3a 0%, #0d3347 40%, #0e4a5c 70%, #1a7a8a 100%);
      padding: 72px 20px 80px;
      text-align: center;
      overflow: hidden;
    }
    .about-hero::before {
      content: '';
      position: absolute; inset: 0;
      background-image: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
      background-size: 42px 42px;
      pointer-events: none;
    }
    .about-hero::after {
      content: '';
      position: absolute; top: -100px; right: -100px;
      width: 500px; height: 500px; border-radius: 50%;
      background: radial-gradient(circle, rgba(26,181,193,0.2) 0%, transparent 65%);
      pointer-events: none;
    }
    .about-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
    .about-breadcrumb {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.6); font-size: 0.8rem; font-weight: 500;
      margin-bottom: 20px; text-transform: uppercase; letter-spacing: .08em;
    }
    .about-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
    .about-breadcrumb a:hover { color: var(--teal); }
    .about-breadcrumb svg { width: 12px; height: 12px; stroke: rgba(255,255,255,0.4); fill: none; stroke-width: 2; }
    .about-breadcrumb .current { color: var(--teal); }
    .about-hero h1 {
      font-size: clamp(2rem, 5vw, 3.2rem);
      font-weight: 800; color: #fff; line-height: 1.15;
      margin-bottom: 16px;
    }
    .about-hero h1 span { color: var(--teal); }
    .about-hero p {
      color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75;
    }

    /* ════════════════════════════════════
       INTRO / ABOUT OVERVIEW
    ════════════════════════════════════ */
    .about-intro {
      background: var(--white);
      padding: 80px 20px;
    }
    .about-intro-inner {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: 1fr 1.6fr;
      gap: 70px; align-items: center;
    }
    .about-intro-left { display: flex; flex-direction: column; gap: 0; }
    .about-years-badge {
      display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
      width: 160px; height: 160px; border-radius: 50%;
      background: linear-gradient(135deg, var(--teal), #0d8a95);
      color: #fff; margin-bottom: 28px;
      box-shadow: 0 8px 32px rgba(26,181,193,0.35);
    }
    .about-years-badge .num { font-size: 3.2rem; font-weight: 800; line-height: 1; }
    .about-years-badge .lbl { font-size: 0.82rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; opacity: .9; }
    .about-years-badge .sub { font-size: 0.72rem; font-weight: 500; opacity: .75; margin-top: 2px; }
    .about-intro-tagline {
      font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      font-weight: 800; color: var(--navy2); line-height: 1.3;
      margin-bottom: 0;
    }
    .about-intro-tagline span { color: var(--teal); }
    .about-intro-right p {
      font-size: 0.92rem; color: var(--text); line-height: 1.85;
      margin-bottom: 20px;
    }
    .about-intro-right p:last-child { margin-bottom: 0; }

    /* ════════════════════════════════════
       HISTORY & MILESTONES
    ════════════════════════════════════ */
    .about-history {
      background: var(--light-bg);
      padding: 80px 20px;
    }
    .about-history-inner { max-width: 1000px; margin: 0 auto; }
    .section-label {
      display: inline-block;
      background: rgba(26,181,193,0.12);
      border: 1px solid rgba(26,181,193,0.35);
      color: var(--teal);
      font-size: 0.7rem; font-weight: 700;
      letter-spacing: .2em; text-transform: uppercase;
      padding: 6px 16px; border-radius: 30px; margin-bottom: 16px;
    }
    .section-title {
      font-size: clamp(1.5rem, 3vw, 2.1rem);
      font-weight: 800; color: var(--navy2); margin-bottom: 50px;
      line-height: 1.25;
    }
    .section-title span { color: var(--teal); }

    /* Timeline */
    .timeline { position: relative; padding-left: 28px; }
    .timeline::before {
      content: '';
      position: absolute; left: 0; top: 8px; bottom: 0;
      width: 3px; background: linear-gradient(to bottom, var(--teal), rgba(26,181,193,0.1));
      border-radius: 3px;
    }
    .tl-year-block { margin-bottom: 44px; position: relative; }
    .tl-year {
      display: inline-flex; align-items: center; justify-content: center;
      background: var(--teal); color: #fff;
      font-size: 0.88rem; font-weight: 700;
      padding: 6px 20px; border-radius: 30px;
      margin-bottom: 18px;
      position: relative;
    }
    .tl-year::before {
      content: '';
      position: absolute; left: -34px; top: 50%;
      transform: translateY(-50%);
      width: 12px; height: 12px; border-radius: 50%;
      background: var(--teal);
      box-shadow: 0 0 0 3px rgba(26,181,193,0.25);
    }
    .tl-items { display: flex; flex-direction: column; gap: 10px; }
    .tl-item {
      background: var(--white);
      border-radius: 10px; padding: 14px 18px;
      font-size: 0.86rem; color: var(--text); line-height: 1.6;
      border-left: 3px solid var(--teal);
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    /* ════════════════════════════════════
       MISSION & VISION
    ════════════════════════════════════ */
    .about-mv {
      background: var(--white);
      padding: 80px 20px;
    }
    .about-mv-inner {
      max-width: 1180px; margin: 0 auto;
    }
    .about-mv-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 28px; margin-top: 50px;
    }
    .mv-card {
      border-radius: 20px; padding: 40px 36px;
      position: relative; overflow: hidden;
    }
    .mv-card--mission { background: var(--navy); }
    .mv-card--vision  { background: linear-gradient(135deg, var(--teal), #0d8a95); }
    .mv-card::before {
      content: '';
      position: absolute; top: -60px; right: -60px;
      width: 200px; height: 200px; border-radius: 50%;
      background: rgba(255,255,255,0.05);
      pointer-events: none;
    }
    .mv-card-tag {
      display: inline-block;
      background: rgba(255,255,255,0.15);
      color: rgba(255,255,255,0.8);
      font-size: 0.68rem; font-weight: 700; letter-spacing: .15em;
      text-transform: uppercase; padding: 5px 14px; border-radius: 20px;
      margin-bottom: 18px;
    }
    .mv-card h3 {
      font-size: 1.2rem; font-weight: 800; color: #fff;
      margin-bottom: 14px;
    }
    .mv-card p {
      font-size: 0.88rem; color: rgba(255,255,255,0.82); line-height: 1.8;
    }

    /* ════════════════════════════════════
       STATS
    ════════════════════════════════════ */
    .about-stats {
      background: var(--light-bg);
      padding: 70px 20px;
    }
    .about-stats-inner {
      max-width: 1180px; margin: 0 auto;
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }
    .stat-card {
      background: var(--white);
      border-radius: 16px; padding: 36px 24px;
      text-align: center;
      box-shadow: 0 3px 16px rgba(0,0,0,0.06);
      transition: transform .25s, box-shadow .25s;
    }
    .stat-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(26,181,193,0.13); }
    .stat-num {
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800; color: var(--teal); line-height: 1;
      margin-bottom: 10px;
    }
    .stat-label {
      font-size: 0.82rem; color: var(--text); line-height: 1.55; font-weight: 500;
    }

    /* ════════════════════════════════════
       VALUES
    ════════════════════════════════════ */
    .about-values {
      background: var(--white);
      padding: 80px 20px;
    }
    .about-values-inner { max-width: 1180px; margin: 0 auto; }
    .values-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 24px; margin-top: 50px;
    }
    .value-card {
      background: var(--light-bg);
      border-radius: 18px; padding: 36px 30px;
      border-top: 4px solid var(--teal);
      transition: transform .25s, box-shadow .25s;
    }
    .value-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(26,181,193,0.1); }
    .value-icon {
      width: 54px; height: 54px; border-radius: 14px;
      background: var(--teal); display: flex; align-items: center; justify-content: center;
      margin-bottom: 20px;
    }
    .value-icon svg { width: 24px; height: 24px; stroke: #fff; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
    .value-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy2); margin-bottom: 10px; }
    .value-card p  { font-size: 0.85rem; color: var(--text); line-height: 1.75; }




    /* ════════════════════════════════════
       RESPONSIVE
    ════════════════════════════════════ */
    @media (max-width: 1100px) {
      .pg-nav a { font-size: 0.76rem; padding: 7px 9px; }
    }
    @media (max-width: 900px) {
      .pg-nav, .pg-header-btns { display: none; }
      .pg-hamburger { display: flex; }
      .pg-header-inner { padding: 0 20px; }
      .pg-topbar { padding: 6px 20px; font-size: 0.76rem; }
      .about-intro-inner { grid-template-columns: 1fr; gap: 40px; }
      .about-intro-left { align-items: center; text-align: center; }
      .about-mv-grid { grid-template-columns: 1fr; }
      .about-stats-inner { grid-template-columns: repeat(2, 1fr); }
      .values-grid { grid-template-columns: 1fr 1fr; }
      .pg-footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
    }
    @media (max-width: 600px) {
      .about-stats-inner { grid-template-columns: 1fr 1fr; }
      .values-grid { grid-template-columns: 1fr; }
      .pg-footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .pg-topbar { display: none; }
    }
    @media (max-width: 480px) {
      .about-stats-inner { grid-template-columns: 1fr; }
      .offices-grid { flex-direction: column; }
    }

    /* ══════════════════════════════════════════
   PAGE HERO / BREADCRUMB
══════════════════════════════════════════ */
.pg-page-hero {
  background: linear-gradient(120deg, #0a1f2e 0%, #0d2d42 60%, #0e3a52 100%);
  padding: 70px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pg-page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,181,193,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.pg-page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.pg-page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  line-height: 1.2;
}
.pg-page-hero h1 span { color: #1ab5c1; }
.pg-page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.75;
}
.pg-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
}
.pg-breadcrumb a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.pg-breadcrumb a:hover { color: #1ab5c1; }
.pg-breadcrumb span { color: #1ab5c1; }
 
/* ══════════════════════════════════════════
   MAIN CONTACT SECTION
══════════════════════════════════════════ */
.pg-contact {
  padding: 90px 40px;
  background: #f4f8fa;
}
.pg-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
 
/* ── LEFT: INFO CARD ── */
.pg-info-card {
  background: linear-gradient(145deg, #0d2d42 0%, #0e3a52 100%);
  border-radius: 22px;
  padding: 46px 38px;
  color: #fff;
  box-shadow: 0 12px 40px rgba(13,45,66,0.25);
  position: sticky;
  top: 100px;
}
.pg-info-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.pg-info-card > p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
 
/* Contact detail rows */
.pg-info-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.pg-info-row:last-of-type { margin-bottom: 0; }
.pg-info-ic {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 12px;
  background: rgba(26,181,193,0.18);
  border: 1px solid rgba(26,181,193,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pg-info-ic svg { width: 20px; height: 20px; }
.pg-info-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.pg-info-text a,
.pg-info-text span {
  font-size: 0.9rem;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
  transition: color 0.2s;
}
.pg-info-text a:hover { color: #1ab5c1; }
 
/* Offices flags */
.pg-offices {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pg-offices h4 {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.pg-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.pg-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.pg-flag img {
  width: 36px;
  height: 24px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.pg-flag span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.65);
  font-weight: 500;
}
 
/* Social icons */
.pg-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.pg-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.pg-socials a:hover {
  background: rgba(26,181,193,0.25);
  border-color: rgba(26,181,193,0.4);
  transform: translateY(-2px);
}
.pg-socials a svg { width: 16px; height: 16px; fill: #fff; }
 
/* ── RIGHT: FORM CARD ── */
.pg-form-card {
  background: #fff;
  border-radius: 22px;
  padding: 46px 40px;
  box-shadow: 0 8px 36px rgba(26,110,133,0.09);
  border: 1px solid #e0eef3;
}
.pg-form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2a35;
  margin-bottom: 8px;
}
.pg-form-card > p {
  color: #5a7080;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1.5px solid #e0eef3;
}
 
/* Form grid */
.pg-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.pg-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.pg-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2a35;
  letter-spacing: 0.02em;
}
.pg-form-group label span { color: #1ab5c1; }
 
.pg-form-group input,
.pg-form-group select,
.pg-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dce8ef;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #1a2a35;
  background: #f8fbfc;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
}
.pg-form-group input:focus,
.pg-form-group select:focus,
.pg-form-group textarea:focus {
  border-color: #1ab5c1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,181,193,0.12);
}
.pg-form-group input::placeholder,
.pg-form-group textarea::placeholder {
  color: #a0b4be;
}
.pg-form-group textarea {
  resize: vertical;
  min-height: 130px;
}
.pg-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
 
/* Submit button */
.pg-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(26,181,193,0.32);
  transition: transform 0.25s, box-shadow 0.25s;
  letter-spacing: 0.02em;
  margin-top: 6px;
}
.pg-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,181,193,0.45);
}
.pg-submit-btn svg { width: 18px; height: 18px; }
 
/* Success message */
.pg-success {
  display: none;
  background: #e8f7f0;
  border: 1px solid #a3ddc0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
  text-align: center;
  color: #1a6e45;
  font-size: 0.9rem;
  font-weight: 600;
}
.pg-success.show { display: block; }
 
/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .pg-contact { padding: 70px 30px; }
  .pg-contact-inner { gap: 36px; }
  .pg-info-card { position: static; }
}
@media (max-width: 768px) {
  .pg-contact { padding: 60px 20px; }
  .pg-contact-inner { grid-template-columns: 1fr; }
  .pg-form-row { grid-template-columns: 1fr; gap: 0; }
  .pg-form-card { padding: 32px 24px; }
  .pg-info-card { padding: 34px 26px; }
  .pg-page-hero { padding: 56px 24px 48px; }
}
@media (max-width: 480px) {
  .pg-form-card { padding: 26px 18px; }
  .pg-info-card { padding: 28px 20px; }
}
/* ══════════════════════════════════════════
   WHY JOIN US — 3 cards
══════════════════════════════════════════ */
.ww-why {
  background: #f4f8fa;
  padding: 80px 40px;
}
.ww-why-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ww-sec-hd {
  text-align: center;
  margin-bottom: 52px;
}
.ww-sec-hd h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a2a35;
}
.ww-sec-hd h2 span { color: #1ab5c1; }
.ww-sec-hd p {
  color: #5a7080;
  font-size: 0.93rem;
  max-width: 540px;
  margin: 12px auto 0;
  line-height: 1.75;
}
.ww-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ww-why-card {
  background: #fff;
  border: 1px solid #e0eef3;
  border-radius: 18px;
  padding: 32px 26px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(26,110,133,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.ww-why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(26,110,133,0.13);
}
.ww-why-ic {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 18px rgba(26,181,193,0.28);
}
.ww-why-ic svg { width: 28px; height: 28px; }
.ww-why-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a35;
  margin-bottom: 10px;
}
.ww-why-card p {
  font-size: 0.84rem;
  color: #5a7080;
  line-height: 1.65;
}

/* ══════════════════════════════════════════
   OPEN POSITIONS
══════════════════════════════════════════ */
.ww-jobs {
  background: #fff;
  padding: 80px 40px;
}
.ww-jobs-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.ww-job-card {
  border: 1px solid #e0eef3;
  border-radius: 16px;
  padding: 28px 30px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  box-shadow: 0 3px 14px rgba(26,110,133,0.06);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
.ww-job-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(26,110,133,0.12);
  border-color: #1ab5c1;
}
.ww-job-left { flex: 1; }
.ww-job-top {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.ww-job-left h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a2a35;
}
.ww-job-tag {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.ww-tag-full { background: #e8f7fb; color: #1a6e85; }
.ww-tag-remote { background: #e8f4ff; color: #2563eb; }
.ww-tag-part { background: #fef3e2; color: #b45309; }
.ww-job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.ww-job-meta span {
  font-size: 0.8rem;
  color: #5a7080;
  display: flex;
  align-items: center;
  gap: 5px;
}
.ww-job-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.ww-apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 30px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(26,181,193,0.28);
  transition: transform 0.2s, box-shadow 0.2s;
  flex-shrink: 0;
}
.ww-apply-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(26,181,193,0.42);
}

/* ══════════════════════════════════════════
   GENERAL APPLICATION FORM
══════════════════════════════════════════ */
.ww-apply {
  background: #f4f8fa;
  padding: 80px 40px;
}
.ww-apply-inner {
  max-width: 860px;
  margin: 0 auto;
}
.ww-apply-card {
  background: #fff;
  border-radius: 22px;
  padding: 48px 44px;
  box-shadow: 0 8px 36px rgba(26,110,133,0.09);
  border: 1px solid #e0eef3;
}
.ww-apply-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2a35;
  margin-bottom: 8px;
}
.ww-apply-card > p {
  color: #5a7080;
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 32px;
  padding-bottom: 26px;
  border-bottom: 1.5px solid #e0eef3;
}
.ww-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.ww-form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.ww-form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: #1a2a35;
}
.ww-form-group label span { color: #1ab5c1; }
.ww-form-group input,
.ww-form-group select,
.ww-form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #dce8ef;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  color: #1a2a35;
  background: #f8fbfc;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  appearance: none;
}
.ww-form-group input:focus,
.ww-form-group select:focus,
.ww-form-group textarea:focus {
  border-color: #1ab5c1;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26,181,193,0.12);
}
.ww-form-group input::placeholder,
.ww-form-group textarea::placeholder { color: #a0b4be; }
.ww-form-group textarea { resize: vertical; min-height: 120px; }
.ww-form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%235a7080' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* File upload styled */
.ww-file-upload {
  position: relative;
}
.ww-file-upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}
.ww-file-label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px dashed #1ab5c1;
  border-radius: 10px;
  background: #f0fbfc;
  cursor: pointer;
  transition: background 0.2s;
}
.ww-file-upload:hover .ww-file-label { background: #e2f7fa; }
.ww-file-label svg { width: 20px; height: 20px; flex-shrink: 0; }
.ww-file-label span {
  font-size: 0.84rem;
  color: #1a6e85;
  font-weight: 500;
}
.ww-file-label small {
  font-size: 0.74rem;
  color: #8aa5b0;
  margin-left: auto;
}

/* Submit button */
.ww-submit-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 6px 22px rgba(26,181,193,0.32);
  transition: transform 0.25s, box-shadow 0.25s;
  margin-top: 6px;
}
.ww-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26,181,193,0.45);
}
.ww-submit-btn svg { width: 18px; height: 18px; }
.ww-success {
  display: none;
  background: #e8f7f0;
  border: 1px solid #a3ddc0;
  border-radius: 12px;
  padding: 18px 20px;
  margin-top: 20px;
  text-align: center;
  color: #1a6e45;
  font-size: 0.9rem;
  font-weight: 600;
}
.ww-success.show { display: block; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ww-hero { padding: 60px 24px 52px; }
  .ww-why, .ww-jobs, .ww-apply { padding: 60px 24px; }
  .ww-why-grid { grid-template-columns: 1fr; }
  .ww-job-card { flex-direction: column; align-items: flex-start; }
  .ww-apply-card { padding: 32px 24px; }
  .ww-form-row { grid-template-columns: 1fr; gap: 0; }
}
@media (max-width: 480px) {
  .ww-apply-card { padding: 26px 18px; }
  .ww-job-card { padding: 22px 20px; }
}

.ww-intro {
  padding: 90px 60px;
  background: #fff;
}
.ww-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.ww-intro-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: #1a2a35;
  line-height: 1.25;
  margin-bottom: 18px;
}
.ww-intro-text h2 span { color: #1ab5c1; }
.ww-intro-text p {
  font-size: 0.93rem;
  color: #4a6070;
  line-height: 1.82;
  margin-bottom: 14px;
}
.ww-intro-img {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26,110,133,0.14);
}
.ww-intro-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.ww-intro-img:hover img { transform: scale(1.03); }

/* ══════════════════════════════════════════
   KEY FEATURES — teal gradient bg
══════════════════════════════════════════ */
.ww-kf {
  position: relative;
  background: linear-gradient(135deg, #0e6e85 0%, #1a9eb0 50%, #1ab5c1 100%);
  padding: 80px 60px;
  overflow: hidden;
}
.ww-kf::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
}
.ww-kf-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.ww-kf-title {
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 50px;
}
.ww-kf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.ww-kf-card {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 18px;
  padding: 30px 24px;
  backdrop-filter: blur(10px);
  transition: background 0.3s, transform 0.3s;
  cursor: default;
}
.ww-kf-card:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-6px);
}
.ww-kf-ic {
  width: 52px; height: 52px;
  border-radius: 13px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.ww-kf-ic svg { width: 24px; height: 24px; }
.ww-kf-card h4 { color: #fff; font-size: 0.95rem; font-weight: 700; margin-bottom: 10px; }
.ww-kf-card p { color: rgba(255,255,255,0.8); font-size: 0.82rem; line-height: 1.65; }

/* ══════════════════════════════════════════
   BENEFITS — white bg, 3 cards
══════════════════════════════════════════ */
.ww-ben {
  background: #f4f8fa;
  padding: 80px 60px;
}
.ww-ben-inner { max-width: 1200px; margin: 0 auto; }
.ww-sec-hd { text-align: center; margin-bottom: 52px; }
.ww-sec-hd h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 800; color: #1a2a35; }
.ww-sec-hd h2 span { color: #1ab5c1; }
.ww-sec-hd p { color: #5a7080; font-size: 0.93rem; max-width: 540px; margin: 12px auto 0; line-height: 1.75; }
.ww-ben-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ww-ben-card {
  background: #fff;
  border: 1px solid #e0eef3;
  border-radius: 18px;
  padding: 34px 28px;
  box-shadow: 0 4px 18px rgba(26,110,133,0.06);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ww-ben-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a6e85, #1ab5c1);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}
.ww-ben-card:hover { transform: translateY(-6px); box-shadow: 0 14px 38px rgba(26,110,133,0.13); }
.ww-ben-card:hover::after { transform: scaleX(1); }
.ww-ben-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: rgba(26,181,193,0.15);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -2px;
}
.ww-ben-card h4 { font-size: 1rem; font-weight: 700; color: #1a2a35; margin-bottom: 10px; }
.ww-ben-card p { font-size: 0.84rem; color: #5a7080; line-height: 1.68; }

/* ══════════════════════════════════════════
   HOW TO JOIN — steps
══════════════════════════════════════════ */
.ww-how {
  background: #fff;
  padding: 80px 60px;
}
.ww-how-inner { max-width: 1000px; margin: 0 auto; }
.ww-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.ww-step {
  text-align: center;
  padding: 36px 24px;
  border: 1px solid #e0eef3;
  border-radius: 18px;
  background: #f8fbfc;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ww-step:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(26,110,133,0.1); }
/* connector line between steps on desktop */
.ww-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  color: #1ab5c1;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
}
.ww-step-circle {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 6px 18px rgba(26,181,193,0.3);
}
.ww-step h4 { font-size: 0.97rem; font-weight: 700; color: #1a2a35; margin-bottom: 10px; }
.ww-step p { font-size: 0.82rem; color: #5a7080; line-height: 1.65; }

/* ══════════════════════════════════════════
   WHO CAN JOIN — partner types
══════════════════════════════════════════ */
.ww-who {
  background: #f4f8fa;
  padding: 80px 60px;
}
.ww-who-inner { max-width: 1200px; margin: 0 auto; }
.ww-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.ww-who-card {
  background: #fff;
  border: 1px solid #e0eef3;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 3px 14px rgba(26,110,133,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.ww-who-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(26,110,133,0.12);
  border-color: #1ab5c1;
}
.ww-who-emoji { font-size: 2.4rem; margin-bottom: 14px; display: block; }
.ww-who-card h4 { font-size: 0.92rem; font-weight: 700; color: #1a2a35; margin-bottom: 8px; }
.ww-who-card p { font-size: 0.8rem; color: #5a7080; line-height: 1.6; }

/* ══════════════════════════════════════════
   CTA SECTION
══════════════════════════════════════════ */
.ww-cta {
  position: relative;
  background: linear-gradient(120deg, #0a1f2e 0%, #0d2d42 55%, #0e3a52 100%);
  padding: 90px 40px;
  text-align: center;
  overflow: hidden;
}
.ww-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(26,181,193,0.16) 0%, transparent 65%);
  pointer-events: none;
}
.ww-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}
.ww-cta-inner h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 18px;
}
.ww-cta-inner h2 span { color: #1ab5c1; }
.ww-cta-inner p {
  color: rgba(255,255,255,0.72);
  font-size: 0.97rem;
  line-height: 1.75;
  margin-bottom: 32px;
}
.ww-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.ww-cta-email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #1ab5c1;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.ww-cta-email:hover { opacity: 0.8; }
.ww-cta-email svg { width: 18px; height: 18px; }
.ww-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a6e85, #1ab5c1);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(26,181,193,0.35);
  transition: transform 0.25s, box-shadow 0.25s;
}
.ww-cta-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 40px rgba(26,181,193,0.5); }
.ww-cta-btn svg { width: 18px; height: 18px; }
.ww-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #25d366;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.ww-cta-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.ww-cta-wa svg { width: 18px; height: 18px; fill: #fff; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-intro { padding: 70px 40px; }
  .ww-kf { padding: 70px 40px; }
  .ww-ben { padding: 70px 40px; }
  .ww-how { padding: 70px 40px; }
  .ww-who { padding: 70px 40px; }
  .ww-kf-grid { grid-template-columns: repeat(2, 1fr); }
  .ww-who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ww-hero { padding: 65px 24px 55px; }
  .ww-intro { padding: 60px 24px; }
  .ww-kf { padding: 60px 24px; }
  .ww-ben { padding: 60px 24px; }
  .ww-how { padding: 60px 24px; }
  .ww-who { padding: 60px 24px; }
  .ww-intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .ww-intro-img img { height: 300px; }
  .ww-kf-grid { grid-template-columns: 1fr 1fr; }
  .ww-ben-grid { grid-template-columns: 1fr; }
  .ww-steps { grid-template-columns: 1fr; gap: 20px; }
  .ww-step:not(:last-child)::after { content: '↓'; right: 50%; top: auto; bottom: -22px; transform: translateX(50%); }
  .ww-who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .ww-kf-grid { grid-template-columns: 1fr; }
  .ww-who-grid { grid-template-columns: 1fr 1fr; }
  .ww-cta { padding: 65px 20px; }
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
.ww-footer {
  background: linear-gradient(160deg, #0a1f2e 0%, #0d2d42 60%, #0e3a52 100%);
  color: #fff;
  padding-top: 70px;
}

.ww-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── TOP GRID ── */
.ww-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 54px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* ── COL 1: LOGO + ABOUT ── */

.ww-footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}
.ww-footer-logo img {
  height: 80px;
  width: auto;
  display: block;
  /* If logo is dark, use filter to make it white on dark bg */
  filter: brightness(0) invert(1);
}

/* If no logo image — text fallback */
.ww-footer-logo-text {
  font-size: 1.3rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.ww-footer-logo-text span { color: #1ab5c1; }

.ww-footer-brand p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.78;
  margin-bottom: 24px;
  max-width: 280px;
}

/* Social icons */
.ww-footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.ww-footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.22s, border-color 0.22s, transform 0.22s;
  text-decoration: none;
}
.ww-footer-socials a:hover {
  background: rgba(26,181,193,0.22);
  border-color: rgba(26,181,193,0.4);
  transform: translateY(-2px);
}
.ww-footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.85);
}

/* ── COL 2,3,4: LINKS ── */
.ww-footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.ww-footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: #1ab5c1;
  border-radius: 2px;
}

.ww-footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.ww-footer-links li a {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s, gap 0.2s;
}
.ww-footer-links li a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1ab5c1;
  flex-shrink: 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.ww-footer-links li a:hover {
  color: #1ab5c1;
  gap: 10px;
}
.ww-footer-links li a:hover::before { opacity: 1; }

/* Contact items */
.ww-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ww-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.ww-footer-contact-ic {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 9px;
  background: rgba(26,181,193,0.15);
  border: 1px solid rgba(26,181,193,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ww-footer-contact-ic svg { width: 15px; height: 15px; }
.ww-footer-contact-text strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 3px;
}
.ww-footer-contact-text a,
.ww-footer-contact-text span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  line-height: 1.5;
  transition: color 0.2s;
  display: block;
}
.ww-footer-contact-text a:hover { color: #1ab5c1; }

/* ── OFFICES ── */
.ww-footer-offices {
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.ww-footer-offices h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.ww-flags-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}
.ww-flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.ww-flag-item img {
  width: 38px;
  height: 26px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.ww-flag-item span {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

/* ── BOTTOM BAR ── */
.ww-footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ww-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.ww-footer-bottom p a {
  color: #1ab5c1;
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}
.ww-footer-bottom p a:hover { opacity: 0.8; }
.ww-footer-bottom-links {
  display: flex;
  gap: 20px;
}
.ww-footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.ww-footer-bottom-links a:hover { color: #1ab5c1; }

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .ww-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .ww-footer-inner { padding: 0 30px; }
}

@media (max-width: 640px) {
  .ww-footer { padding-top: 50px; }
  .ww-footer-inner { padding: 0 20px; }
  .ww-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-bottom: 40px;
  }
  .ww-footer-brand p { max-width: 100%; }
  .ww-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  .ww-footer-bottom-links { justify-content: center; }
  .ww-flags-row { gap: 16px; }
}

/* DROPDOWN STYLES */
.pg-dropdown-wrap { position: relative; }
.pg-nav-link { color: #2d3748; text-decoration: none; font-size: 0.82rem; font-weight: 500; padding: 8px 13px; border-radius: 6px; white-space: nowrap; transition: color 0.2s, background 0.2s; letter-spacing: 0.02em; text-transform: uppercase; display: flex; align-items: center; gap: 5px; cursor: pointer; }
.pg-nav-link:hover, .pg-nav-link.active { color: #1ab5c1; background: rgba(26,181,193,0.07); }
.pg-nav-link svg { width: 12px; height: 12px; transition: transform 0.25s; }
.pg-dropdown-wrap:hover .pg-nav-link svg { transform: rotate(180deg); }
.pg-dropdown { position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%) translateY(8px); background: #fff; border: 1px solid #e0eef3; border-radius: 16px; box-shadow: 0 16px 48px rgba(26,110,133,0.16); min-width: 260px; padding: 10px 8px; opacity: 0; visibility: hidden; transition: opacity 0.25s, transform 0.25s, visibility 0.25s; z-index: 99999; }
.pg-dropdown-wrap:hover .pg-dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.pg-dropdown a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: 10px; text-decoration: none; color: #2d3748; font-size: 0.83rem; font-weight: 500; transition: background 0.2s, color 0.2s; white-space: nowrap; text-transform: none; }
.pg-dropdown a:hover { background: rgba(26,181,193,0.08); color: #1ab5c1; }
.pg-dd-ic { width: 34px; height: 34px; min-width: 34px; border-radius: 9px; background: linear-gradient(135deg, #1a6e85, #1ab5c1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pg-dd-ic svg { width: 16px; height: 16px; }

/* MOBILE SERVICES ACCORDION */
.pg-mob-services-toggle { display: flex; align-items: center; justify-content: space-between; color: #2d3748; font-size: 0.9rem; font-weight: 500; padding: 12px 0; border-bottom: 1px solid #f0f4f5; text-transform: uppercase; letter-spacing: 0.03em; cursor: pointer; background: none; border-left: none; border-right: none; border-top: none; width: 100%; text-align: left; font-family: 'Poppins', sans-serif; transition: color 0.2s; }
.pg-mob-services-toggle:hover, .pg-mob-services-toggle.open { color: #1ab5c1; }
.pg-mob-services-toggle svg { width: 14px; height: 14px; transition: transform 0.25s; flex-shrink: 0; }
.pg-mob-services-toggle.open svg { transform: rotate(180deg); }
.pg-mob-services-sub { display: none; flex-direction: column; background: #f8fbfc; border-radius: 12px; margin: 6px 0 2px; overflow: hidden; border: 1px solid #e0eef3; }
.pg-mob-services-sub.open { display: flex; }
.pg-mob-services-sub a { color: #2d3748; text-decoration: none; font-size: 0.84rem; font-weight: 500; padding: 11px 14px; border-bottom: 1px solid #edf2f5; transition: color 0.2s, background 0.2s; text-transform: none; letter-spacing: 0; }
.pg-mob-services-sub a:last-child { border-bottom: none; }
.pg-mob-services-sub a:hover { color: #1ab5c1; background: rgba(26,181,193,0.05); }