 :root {
    --dark-green: #0B6B3A;
    --green: #1E9E4B;
    --light-green: #6ED26A;
    --pale-green: #E6F7EA;
    --yellow: #FFD43B;
    --soft-yellow: #FFF4B8;
    --gold: #C9A961;
    --ink: #1A1A1A;
    --muted: #555;
    --line: #E5E7EB;
    --bg: #FFFFFF;
    --bg-soft: #FAFBF8;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.6;
    font-size: 16px;
  }

  .container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

  /* ============ NAV ============ */
  .nav {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 28px; max-width: 1200px; margin: 0 auto;
  }
  .brand {
    display: flex; align-items: center; gap: 10px;
    font-weight: 800; font-size: 22px; letter-spacing: 0.5px;
    color: var(--ink); text-decoration: none;
  }
  .brand .fifty { color: var(--gold); font-family: Georgia, serif; font-style: italic; font-size: 28px; font-weight: 700; }
  .brand .travel { font-size: 12px; font-weight: 400; color: var(--muted); letter-spacing: 3px; display: block; }
  .nav-links { display: flex; gap: 28px; }
  .nav-links a {
    text-decoration: none; color: var(--ink); font-weight: 500; font-size: 15px;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--dark-green); }
  .nav-cta {
    background: var(--dark-green); color: #fff; padding: 10px 20px;
    border-radius: 999px; text-decoration: none; font-weight: 600; font-size: 14px;
  }

  /* ============ HERO ============ */
  .hero {
    position: relative;
    padding: 90px 0 110px;
    overflow: hidden;
    background: linear-gradient(180deg, #fff 0%, var(--pale-green) 100%);
  }
  .hero::before {
    content: ""; position: absolute; top: -100px; right: -120px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(30,158,75,0.15) 0%, transparent 70%);
  }
  .hero::after {
    content: ""; position: absolute; bottom: -80px; left: -80px;
    width: 300px; height: 300px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,212,59,0.2) 0%, transparent 70%);
  }
  .hero-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
  }
  .hero h1 {
    font-size: 52px; line-height: 1.1; margin: 0 0 20px;
    color: var(--ink); font-weight: 800; letter-spacing: -1px;
  }
  .hero h1 .accent { color: var(--dark-green); display: block; }
  .hero .lead {
    font-size: 19px; color: var(--muted); margin: 0 0 32px; max-width: 560px;
  }
  .hero-badges {
    display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px;
  }
  .badge {
    padding: 8px 16px; border-radius: 999px; font-size: 13px; font-weight: 600;
    background: #fff; border: 1px solid var(--line); color: var(--dark-green);
  }
  .hero-cta {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--dark-green); color: #fff!important; padding: 16px 32px;
    border-radius: 999px; text-decoration: none; font-weight: 600;
    box-shadow: 0 10px 30px rgba(11,107,58,0.25); transition: transform .2s;
  }
  .hero-cta:hover { transform: translateY(-2px); }

  /* Dotted visual cluster (mirrors profile style) */
  .dot-cluster {
    position: relative; width: 100%; aspect-ratio: 1/1; max-width: 420px; margin-left: auto;
  }
  .dot {
    position: absolute; width: 70px; height: 70px; border-radius: 50%;
  }
  .dot.g1 { background: var(--light-green); top: 10%; left: 40%; }
  .dot.g2 { background: var(--green); top: 10%; left: 62%; }
  .dot.g3 { background: var(--light-green); top: 10%; left: 84%; }
  .dot.g4 { background: var(--light-green); top: 32%; left: 18%; }
  .dot.g5 { background: var(--light-green); top: 32%; left: 40%; }
  .dot.g6 { background: var(--yellow); top: 32%; left: 62%; }
  .dot.g7 { background: var(--light-green); top: 32%; left: 84%; }
  .dot.g8 { background: var(--yellow); top: 54%; left: 40%; }
  .dot.g9 { background: var(--green); top: 54%; left: 62%; }
  .dot.g10 { background: var(--light-green); top: 54%; left: 84%; }
  .dot.g11 { background: var(--light-green); top: 76%; left: 62%; }
  .dot.g12 { background: var(--dark-green); top: 76%; left: 84%; }
  .dot.g13 { background: var(--yellow); top: 98%; left: 84%; }


.dot {
  animation: floatDot 4s ease-in-out infinite;
  transition: transform 0.3s ease;
}

.dot:hover {
  transform: scale(1.2);
}

@keyframes floatDot {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-12px) scale(1.08);
  }
}

.dot {
  animation: floatDot 4s ease-in-out infinite;
}

/* Add delay for natural randomness */
.dot.g1 { animation-delay: 0s; }
.dot.g2 { animation-delay: 0.2s; }
.dot.g3 { animation-delay: 0.4s; }
.dot.g4 { animation-delay: 0.6s; }
.dot.g5 { animation-delay: 0.8s; }
.dot.g6 { animation-delay: 1s; }
.dot.g7 { animation-delay: 1.2s; }
.dot.g8 { animation-delay: 1.4s; }
.dot.g9 { animation-delay: 1.6s; }
.dot.g10 { animation-delay: 1.8s; }
.dot.g11 { animation-delay: 2s; }
.dot.g12 { animation-delay: 2.2s; }
.dot.g13 { animation-delay: 2.4s; }
  /* ============ SECTIONS ============ */
  section { padding: 90px 0; }
  .section-title {
    font-size: 40px; line-height: 1.15; margin: 0 0 16px;
    color: var(--dark-green); font-weight: 800; letter-spacing: -0.5px;
  }
  .section-kicker {
    display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 2px;
    color: var(--gold); text-transform: uppercase; margin-bottom: 14px;
  }
  .section-lead {
    font-size: 18px; color: var(--muted); max-width: 760px; margin: 0 0 48px;
  }

  /* Intro / Redefining */
  .intro {
    background: linear-gradient(135deg, #fff 0%, var(--pale-green) 100%);
    position: relative; overflow: hidden;
  }
  .intro::before {
    content: ""; position: absolute; right: -10%; top: 20%;
    width: 70%; height: 60%;
    background: radial-gradient(ellipse, rgba(110,210,106,0.25) 0%, transparent 60%);
    filter: blur(40px);
  }
  .intro-grid { display: grid; grid-template-columns: 1fr; gap: 40px; position: relative; z-index: 2; }
  .intro h2 {
    font-size: 54px; line-height: 1.1; margin: 0 0 28px; font-weight: 800;
    color: var(--ink); letter-spacing: -1px; max-width: 900px;
  }
  .intro h2 .quote { color: var(--dark-green); }
  .intro p {
    font-size: 19px; color: var(--ink); max-width: 820px; line-height: 1.65;
  }

  /* Mission & Vision */
  .mv {
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  }
  .mv-card h3 {
    font-size: 42px; color: var(--dark-green); margin: 0 0 16px; font-weight: 800;
  }
  .mv-card p {
    font-size: 17px; color: var(--ink); margin: 0; font-style: italic; line-height: 1.65;
  }
  .mv-card + .mv-card { margin-top: 48px; }

  /* Corporate info strip */
  .corp-info { background: var(--bg-soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.corp-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-top: 40px;
  position: relative;
}

/* Main horizontal timeline line */
.corp-grid::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #e0e0e0;
  z-index: 0;
}

.corp-item {
  position: relative;
  padding-top: 50px;
  z-index: 1;
  text-align: center;
}

/* Timeline dots */
.corp-item::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid;
  z-index: 2;
}

/* Colored dots */
.corp-item.c1::before { border-color: #FF6B6B; }
.corp-item.c2::before { border-color: #FF9F40; }
.corp-item.c3::before { border-color: #4CAF50; }
.corp-item.c4::before { border-color: #4A90E2; }
.corp-item.c5::before { border-color: #9B59B6; }
.corp-item.c6::before { border-color: var(--dark-green); }

/* Headings */
.corp-item h4 {
  font-size: 18px;
  font-weight: 800;
  margin: 10px 0 8px;
}

/* Matching heading colors */
.corp-item.c1 h4 { color: #FF6B6B; }
.corp-item.c2 h4 { color: #FF9F40; }
.corp-item.c3 h4 { color: #4CAF50; }
.corp-item.c4 h4 { color: #4A90E2; }
.corp-item.c5 h4 { color: #9B59B6; }
.corp-item.c6 h4 { color: var(--dark-green); }

/* Description */
.corp-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  max-width: 180px;
  margin-inline: auto;
}

/* Optional hover effect (adds elegance) */
.corp-item:hover::before {
  transform: translateX(-50%) scale(1.2);
  transition: 0.3s ease;
}

.corp-item:hover h4 {
  transform: translateY(-2px);
  transition: 0.3s ease;
}

  /* Pillars (Know-How, Seamless, etc.) */
  .pillars-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 40px;
  }
  .pillar {
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 32px 28px; transition: transform .25s, box-shadow .25s;
  }
  .pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
  .pillar .chip {
    display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 6px 12px; border-radius: 6px;
    margin-bottom: 16px;
  }
  .pillar.y .chip { background: var(--yellow); color: var(--ink); }
  .pillar.g .chip { background: var(--dark-green); color: #fff; }
  .pillar.lg .chip { background: var(--light-green); color: var(--ink); }
  .pillar.n .chip { background: #F1F5F2; color: var(--dark-green); border: 1px solid var(--line); }
  .pillar h4 {
    font-size: 20px; font-weight: 800; margin: 0 0 10px; color: var(--ink);
  }
  .pillar p { font-size: 15px; color: var(--muted); margin: 0; }

  /* Services (new content) */
  .services { background: var(--bg-soft); }
  .services-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px;
  }
  .service {
    background: #fff; border-radius: 20px; padding: 36px;
    border: 1px solid var(--line); position: relative; overflow: hidden;
    transition: transform .25s, box-shadow .25s;
  }
  .service:hover { transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.08); }
  .service::before {
    content: ""; position: absolute; top: -40px; right: -40px;
    width: 140px; height: 140px; border-radius: 50%;
    background: var(--pale-green); opacity: 0.6; z-index: 0;
  }
  .service-num {
    position: relative; z-index: 1;
    display: inline-flex; align-items: center; justify-content: center;
    width: 52px; height: 52px; border-radius: 14px;
    background: var(--dark-green); color: #fff;
    font-size: 20px; font-weight: 800; margin-bottom: 18px;
  }
  .service h4 {
    position: relative; z-index: 1;
    font-size: 22px; font-weight: 800; margin: 0 0 12px; color: var(--ink);
    line-height: 1.25;
  }
  .service p {
    position: relative; z-index: 1;
    font-size: 15px; color: var(--muted); margin: 0; line-height: 1.65;
  }
  .service.accent { background: linear-gradient(135deg, var(--dark-green), var(--green)); color: #fff; }
  .service.accent::before { background: rgba(255,255,255,0.1); }
  .service.accent .service-num { background: var(--yellow); color: var(--ink); }
  .service.accent h4 { color: #fff; }
  .service.accent p { color: rgba(255,255,255,0.92); }

  /* Global partner */
  .partner-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  }
  .partner-logos {
    display: flex; gap: 28px; align-items: center; flex-wrap: wrap; margin: 24px 0 32px;
  }
  .partner-badge {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px; background: #fff;
    border: 1px solid var(--line); border-radius: 12px;
    font-weight: 700; color: var(--dark-green);
  }
  .partner-badge.ctm { color: #2C7A3E; }
  .partner-badge.radius { color: #2C9BC4; }
  .partner-visual {
    aspect-ratio: 4/3;
    border-radius: 24px;
    background-image: linear-gradient(135deg, rgba(11,107,58,0.1), rgba(255,212,59,0.2)),
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'><rect width='400' height='300' fill='%23fff'/><circle cx='120' cy='150' r='80' fill='%231E9E4B' opacity='0.12'/><circle cx='280' cy='150' r='100' fill='%23FFD43B' opacity='0.18'/></svg>");
    background-size: cover; background-position: center;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
  }
  .partner-visual .stat {
    background: #fff; border-radius: 20px; padding: 32px 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08); text-align: center; width: 75%;
  }
  .partner-visual .stat .big { font-size: 56px; font-weight: 800; color: var(--dark-green); line-height: 1; }
  .partner-visual .stat .lbl { font-size: 14px; color: var(--muted); margin-top: 6px; letter-spacing: 1px; text-transform: uppercase; }

  /* Why Choose */
  .why { background: var(--dark-green); color: #fff; position: relative; overflow: hidden; }
  .why::before {
    content: ""; position: absolute; top: -100px; right: -100px;
    width: 400px; height: 400px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255,212,59,0.2), transparent 70%);
  }
  .why .section-title { color: #fff; }
  .why .section-kicker { color: var(--yellow); }
  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
    position: relative; z-index: 2;
  }
  .why-item {
    background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px; padding: 24px;
    backdrop-filter: blur(6px);
  }
  .why-item .tick {
    display: inline-flex; align-items: center; justify-content: center;
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--yellow); color: var(--dark-green);
    font-weight: 800; margin-bottom: 12px;
  }
  .why-item h5 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
  .why-item p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.82); line-height: 1.55; }

  /* CTA */
  .cta {
    text-align: center; padding: 90px 0;
    background: linear-gradient(180deg, #fff 0%, var(--pale-green) 100%);
  }
  .cta h2 { font-size: 42px; color: var(--dark-green); margin: 0 0 16px; font-weight: 800; }
  .cta p { font-size: 18px; color: var(--muted); max-width: 620px; margin: 0 auto 32px; }
  .cta-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
  .btn-primary, .btn-outline {
    display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px;
    border-radius: 999px; font-weight: 600; text-decoration: none;
  }
  .btn-primary { background: var(--dark-green); color: #fff!important; box-shadow: 0 10px 30px rgba(11,107,58,0.25); }
  .btn-outline { background: #fff; color: var(--dark-green); border: 2px solid var(--dark-green); }

  /* Accreditation strip */
  .accred { background: #fff; padding: 32px 0; border-top: 1px solid var(--line); }
  .accred-row {
    display: flex; align-items: center; justify-content: center; gap: 24px;
    flex-wrap: wrap;
  }
  .accred-row .lbl { font-weight: 700; color: var(--ink); font-size: 14px; letter-spacing: 2px; text-transform: uppercase; }
  .accred-row .item {
    padding: 10px 18px; border: 1px solid var(--line); border-radius: 10px;
    font-weight: 700; font-size: 13px; color: var(--muted); letter-spacing: 1px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .hero-grid, .mv, .partner-grid, .intro-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero h1 { font-size: 36px; }
    .intro h2 { font-size: 34px; }
    .section-title { font-size: 30px; }
    .corp-grid { grid-template-columns: repeat(2, 1fr); }
    .pillars-grid, .services-grid, .why-grid { grid-template-columns: 1fr; }
    .nav-links { display: none; }
    section { padding: 60px 0; }
  }