:root {
  --bg: #f5f8fc;
  --surface: #ffffff;
  --surface-strong: #f0f5fb;
  --text: #163047;
  --muted: #5b7287;
  --primary: #0d5ea6;
  --primary-dark: #08457b;
  --accent: #19a7a8;
  --line: #dbe6f0;
  --shadow: 0 18px 45px rgba(14, 49, 84, 0.08);
  --radius: 22px;
  --radius-sm: 16px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(180deg, #f8fbff 0%, #f4f8fc 100%);
  color: var(--text);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(219, 230, 240, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 22, 43, 0.82) 0%, rgba(8, 22, 43, 0.68) 42%, rgba(8, 22, 43, 0.40) 100%),
    url("sg.jpg") center center / cover no-repeat;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  padding: 100px 0 80px;
}

.hero-copy {
  max-width: 700px;
  color: #ffffff;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 5vw, 4.4rem);
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}

.hero-copy .lead {
  max-width: 640px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.hero-stat + .hero-stat {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
  color: #ffffff;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}

.hero-bg-credit {
  position: absolute;
  left: 24px;
  bottom: 18px;
  z-index: 2;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 90px 0 60px;
  }

  .hero-card {
    max-width: 680px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(8, 22, 43, 0.84) 0%, rgba(8, 22, 43, 0.72) 100%),
      url("sg.jpg") center center / cover no-repeat;
  }

  .hero-copy h1 {
    font-size: 2.1rem;
  }

  .hero-copy .lead {
    font-size: 1rem;
  }

  .hero-bg-credit {
    left: 16px;
    right: 16px;
    bottom: 12px;
    font-size: 0.72rem;
  }
}

.logo-box {
  overflow: hidden;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  border: 2px dashed #9fc0dd;
  color: var(--primary);
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #eef6ff 0%, #dff2ff 100%);
  font-weight: 700;
  font-size: 0.9rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-subtitle {
  font-size: 0.70rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.site-nav a {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.site-nav a:hover {
  color: var(--primary);
}

.menu-toggle,
.menu-button {
  display: none;
}

.hero-section {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 5.5rem 0 4rem;

  background:
    linear-gradient(
      90deg,
      rgba(8, 22, 43, 0.82) 0%,
      rgba(8, 22, 43, 0.65) 40%,
      rgba(8, 22, 43, 0.35) 100%
    ),
    url("sg.jpg") center center / cover no-repeat;

  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow,
.section-tag,
.overline {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(13, 94, 166, 0.08);
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 1rem 0 1rem;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.lead {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.35rem;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: var(--surface);
  color: var(--primary);
  border: 1px solid var(--line);
}

.hero-card,
.two-column-card,
.team-card,
.mission-card,
.product-intro-card,
.content-card,
.contact-box,
.strategy-card {
  background: var(--surface);
  border: 1px solid rgba(219, 230, 240, 0.85);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.hero-stat {
  padding: 1.1rem;
  border-radius: 18px;
  background: linear-gradient(135deg, #f7fbff 0%, #eff6fc 100%);
  border: 1px solid var(--line);
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
}

.hero-stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.section {
  padding: 2rem 0 5rem;
}

.section-alt {
  background: linear-gradient(180deg, rgba(235, 244, 252, 0.55) 0%, rgba(245, 248, 252, 0) 100%);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  margin: 0.85rem 0 0;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.two-column-card {
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: var(--surface-strong);
  border-radius: 18px;
  border: 1px solid var(--line);
}

.feature-icon,
.mission-number,
.strategy-number {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  font-weight: 800;
}

.feature-item h3,
.strategy-card h3,
.content-card h3,
.product-intro-card h3 {
  margin: 0 0 0.3rem;
}

.feature-item p,
.strategy-card p,
.content-card p,
.contact-box p,
.team-content p {
  margin: 0;
  color: var(--muted);
}

.team-grid {
  display: grid;
  gap: 1.5rem;
}

.team-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  overflow: hidden;
}

.photo-placeholder {
  display:none;

  min-height: 100%;
  background: linear-gradient(180deg, #e9f4ff 0%, #dbeefe 100%);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
}

.photo-placeholder span {

  font-weight: 800;
  font-size: 1.1rem;
  color: var(--primary-dark);
}

.photo-placeholder small {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
}

.team-content {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}

.team-role {
  display: inline-block;
  color: var(--primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.team-content h3 {
  margin: -0.3rem 0 0;
  font-size: 2rem;
}

.team-highlight {
  color: var(--text) !important;
  font-weight: 700;
}

.mission-grid,
.strategy-grid,
.product-layout {
  display: grid;
  gap: 1.25rem;
}

.mission-grid {
  grid-template-columns: repeat(3, 1fr);
}

.mission-card,
.strategy-card,
.content-card,
.product-intro-card,
.contact-box {
  padding: 1.6rem;
}

.mission-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.product-intro-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  margin-bottom: 1.25rem;
}

.designed-by,
.promo-title {
  font-weight: 700;
}

.promo-title {
  color: var(--primary);
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.strategy-grid {
  grid-template-columns: repeat(5, 1fr);
  margin: 1.25rem 0;
}

.strategy-card {
  min-height: 100%;
}

.strategy-card h3 {
  margin-top: 1rem;
}

.product-layout {
  grid-template-columns: 1fr 1fr;
}

.clean-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.note {
    background-color: #d62828;
  color: #ffffff;
  padding: 18px 20px;
  margin-top: 20px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;   /* change this */
}

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.contact-details {
  display: grid;
  gap: 0.8rem;
}

.contact-details a {
  color: var(--primary);
  font-size: 1.25rem;
  font-weight: 800;
}

.site-footer {
  padding: 1.25rem 0 2rem;
  border-top: 1px solid rgba(219, 230, 240, 0.9);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.narrow-spacing p + p {
  margin-top: 0.75rem;
}

@media (max-width: 1160px) {
  .strategy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .two-column-card,
  .mission-grid,
  .product-intro-card,
  .product-layout,
  .contact-box,
  .team-card {
    grid-template-columns: 1fr;
  }

  .strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .photo-placeholder {
  display:none;

    min-height: 260px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .footer-wrap {
    flex-direction: column;
  }

  .site-nav {
    position: absolute;
    top: 84px;
    left: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-button {
    display: inline-flex;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
    background: #fff;
  }

  .menu-button span {
    width: 20px;
    height: 2px;
    background: var(--primary);
    display: block;
  }

  .menu-toggle:checked ~ .site-nav {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-section {
    padding-top: 4rem;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .strategy-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .feature-item {
    flex-direction: column;
  }

  .logo-box {
  overflow: hidden;
    width: 58px;
    height: 58px;
  }

  .brand-title {
    font-size: 1rem;
  }
}


.logo-image-wrap {
  padding: 0;
  border-style: solid;
  border-color: rgba(159, 192, 221, 0.45);
  background: #fff;
}

.site-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.35rem;
}

.team-photo-wrap {
  min-height: 100%;
  background: linear-gradient(180deg, #eef6ff 0%, #deedf9 100%);
  border-right: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.2rem;
}

.team-photo{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:8px;
    margin:15px auto;
    display:block;
}

.note-box {
  background-color: #d62828;
  color: #ffffff;
  padding: 18px 20px;
  margin-top: 20px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.6;
  text-align: left;   /* change this */
}


/* --- HERO TEXT VISIBILITY FIX --- */

.hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 3px 8px rgba(0,0,0,0.55);
}

.hero-copy .lead {
  color: #f1f6fb;
}

.eyebrow {
  background: rgba(0,0,0,0.45);
  color: #ffffff;
}

/* Improve card visibility on hero background */

.hero-stat {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.08);
}

.hero-stat strong {
  color: #0d5ea6;
}

.hero-stat span {
  color: #334e68;
}

/* Button visibility */

.btn-secondary {
  background: #ffffff;
  color: #0d5ea6;
  border: none;
}

.btn-secondary:hover {
  background: #e8f1fb;
}

/* Credit text */

.hero-bg-credit {
  color: rgba(255,255,255,0.9);
}

.product-image{
  width:100%;
  max-width:520px;
  margin-top:15px;
  border-radius:10px;
  display:block;
}
