*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Avatar accents — unchanged */
  --cyan:       #00A8C5;
  --cyan-light: #33D4E8;
  --purple:     #B026FF;
  --purple-hov: #C920FF;

  /* Backgrounds — much lighter now */
  --navy:       #0D2137;   /* hero, footer, services-dark (still deep but not black) */
  --mid-ocean:  #EBF5FA;   /* light sections: about, why, contact */
  --section-alt:#F4F9FB;   /* alternate light: mission, products */
  --card-bg:    #FFFFFF;   /* cards fully white */
  --atmosphere: #B0D8E8;   /* borders on light sections */
  --atm-dark:   #1B5A7A;   /* borders on dark sections */

  /* Text */
  --text:       #1A3A4A;   /* dark text for light sections */
  --text-light: #5A8A9F;   /* muted text */
  --text-inv:   #D8EEF6;   /* light text for dark sections */

  --white:      #ffffff;
  --radius:     10px;
  --radius-lg:  18px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--section-alt);
  color: var(--text);
  line-height: 1.7;
  font-size: 15px;
  overflow-x: hidden;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ── SECTION BADGE ── */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(0,168,197,0.1);
  border: 1px solid rgba(0,168,197,0.35);
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
  background: linear-gradient(135deg, #ffffff 30%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-dark {
  background: linear-gradient(135deg, var(--navy) 30%, var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-purple {
  background: linear-gradient(135deg, #ffffff 20%, var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13,33,55,0.8);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(27,90,122,0.4);
  transition: background .3s, box-shadow .3s;
}
.navbar.scrolled {
  background: rgba(13,33,55,0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.35);
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 70px;
  position: relative;          /* anchor for absolute nav */
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 2px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.logo span { color: var(--cyan); }

/* ── LOGO IMAGE ── */
.logo-img-link { display: inline-block; text-decoration: none; }
.logo-img {
  height: 42px;
  width: auto;
  display: block;
  /* invert dark navy logo to white for dark navbar */
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.logo-img:hover { opacity: 0.85; }
.footer-logo-img {
  height: 48px;
  /* footer is dark too — keep white */
  filter: brightness(0) invert(1);
  opacity: 0.85;
  margin-bottom: 0.1rem;
}

.logo-wrap { display: flex; flex-direction: column; gap: 0; flex-shrink: 0; }
.logo-motto {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  margin-top: -2px;
  padding-left: 2px;
}

.footer-motto {
  font-size: 0.78rem;
  font-style: italic;
  color: var(--cyan);
  opacity: 0.7;
  letter-spacing: 1px;
  margin-top: -0.2rem;
  margin-bottom: 0.6rem;
}

/* nav element centred absolutely so logo width doesn't affect it */
.nav-inner > nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
/* push the CTA button to the far right */
.nav-inner > .btn-primary {
  margin-left: auto;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  white-space: nowrap;
}
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 0.4rem 1.1rem;
  border-radius: 6px;
  transition: color .2s, background .2s;
}
.nav-links a:hover {
  color: var(--cyan);
  background: rgba(0,168,197,0.1);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  margin-left: auto;
  color: var(--white);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .22s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--purple);
  color: var(--white);
  border-color: var(--purple);
  box-shadow: 0 0 18px rgba(176,38,255,0.3);
}
.btn-primary:hover {
  background: var(--purple-hov);
  border-color: var(--purple-hov);
  box-shadow: 0 0 26px rgba(176,38,255,0.45);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(0,168,197,0.08);
}
.btn-cyan {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  font-weight: 700;
}
.btn-cyan:hover {
  background: var(--cyan-light);
  border-color: var(--cyan-light);
  transform: translateY(-1px);
}
.btn.full { width: 100%; justify-content: center; }
.btn-arrow::after { content: ' →'; }

/* ── HERO (dark) ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* Use your own photo: upload hero-bg.jpg to public_html/images/ */
  background-image: url('../images/hero-bg.jpg'),
                    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--navy);
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,33,55,0.93) 45%, rgba(13,33,55,0.72));
}
.hero::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(176,38,255,0.13), transparent 70%);
  top: -120px; right: -120px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-top: 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0,168,197,0.12);
  border: 1px solid rgba(0,168,197,0.35);
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
.hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}
.hero-content p {
  color: rgba(216,238,246,0.82);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 2.2rem;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* stats strip */
.hero-stats {
  position: relative;
  z-index: 2;
  width: 100%;
  margin-top: 5rem;
  border-top: 1px solid rgba(27,90,122,0.45);
  background: rgba(13,33,55,0.75);
  backdrop-filter: blur(12px);
}
.hero-stats-inner {
  display: flex;
  justify-content: center;
}
.stat-item {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(27,90,122,0.4);
}
.stat-item:last-child { border-right: none; }
.stat-item .num { font-size: 2rem; font-weight: 800; color: var(--cyan); line-height: 1; }
.stat-item .lbl { font-size: 0.75rem; color: rgba(216,238,246,0.6); margin-top: 0.3rem; text-transform: uppercase; letter-spacing: 1px; }

/* ── SECTIONS ── */
.section { padding: 90px 0; }

/* light section title (on light bg) */
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.8rem;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.section-title.center { text-align: center; }
/* white title override for dark sections */
.section-title.on-dark { color: var(--white); }

.section-sub {
  color: var(--text-light);
  max-width: 640px;
  margin-bottom: 2.5rem;
  font-size: 0.95rem;
  line-height: 1.75;
}
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ── TWO-COL ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse > :first-child { order: 2; }
.two-col.reverse > :last-child  { order: 1; }

/* ── CHECK LIST ── */
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.2rem 0 2rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text);
}
.check-list li::before {
  content: '✦';
  color: var(--cyan);
  font-size: 0.7rem;
  margin-top: 0.38rem;
  flex-shrink: 0;
}

/* ── IMAGE FRAME ── */
.img-frame { position: relative; }
.img-frame img { width: 100%; border-radius: var(--radius-lg); display: block; }
.img-placeholder {
  width: 100%;
  padding-top: 72%;
  background: linear-gradient(135deg, #cce8f4 0%, #a0d0e8 100%);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.img-placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(0,168,197,0.12));
}
.img-frame::before {
  content: '';
  position: absolute;
  width: 50px; height: 50px;
  border-top: 3px solid var(--cyan);
  border-left: 3px solid var(--cyan);
  top: -10px; left: -10px;
  border-radius: 4px 0 0 0;
  z-index: 2;
}
.img-frame::after {
  content: '';
  position: absolute;
  width: 50px; height: 50px;
  border-bottom: 3px solid var(--purple);
  border-right: 3px solid var(--purple);
  bottom: -10px; right: -10px;
  border-radius: 0 0 4px 0;
  z-index: 2;
}

/* ── WHO WE ARE (light bg) ── */
.who { background: var(--mid-ocean); }

/* ── MISSION (alternate light) ── */
.mission-section { background: var(--section-alt); }

.mission-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--atmosphere);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.mission-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,168,197,0.12);
  border-color: var(--cyan);
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}
.mission-num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(0,168,197,0.08);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.25rem;
}
.mission-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.mission-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 0.6rem; }
.mission-card p  { font-size: 0.86rem; color: var(--text-light); line-height: 1.65; }

/* ── WHY CHOOSE US (light bg) ── */
.why { background: var(--mid-ocean); }

/* ── SERVICES DARK (dark bg) ── */
.services-dark {
  background: var(--navy);
  padding: 90px 0;
}
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(27,90,122,0.5);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,168,197,0.5);
  box-shadow: 0 12px 40px rgba(0,168,197,0.1);
}
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(0,168,197,0.12);
  border: 1px solid rgba(0,168,197,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.service-card p  { font-size: 0.86rem; color: rgba(216,238,246,0.65); line-height: 1.65; }

/* cards three grid */
.cards.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

/* ── MOQ TICKER ── */
.moq-section {
  background: var(--navy);
  border-top: 1px solid rgba(27,90,122,0.4);
  border-bottom: 1px solid rgba(27,90,122,0.4);
  padding: 2rem 0;
  overflow: hidden;
}
.moq-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 1rem;
}
.moq-ticker-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.moq-ticker {
  display: flex;
  gap: 0.75rem;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.moq-ticker:hover { animation-play-state: paused; }
.moq-tag {
  background: rgba(0,168,197,0.1);
  border: 1px solid rgba(0,168,197,0.3);
  color: var(--cyan);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── PRODUCTS (alternate light) ── */
.products-section { background: var(--section-alt); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--atmosphere);
  background: var(--card-bg);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform .25s, box-shadow .25s;
  position: relative;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,168,197,0.14);
}
.product-img-wrap {
  position: relative;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.product-img {
  width: 100%;
  height: 210px;
  background: linear-gradient(135deg, #c8e8f4, #a0cfe8);
}
.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,33,55,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.6);
  padding: 0.4rem 1rem;
  border-radius: 6px;
}
.product-info { padding: 1rem 1.1rem 1.2rem; }
.product-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--cyan);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.product-name { font-size: 0.92rem; font-weight: 600; color: var(--navy); }

/* ── CONTACT (light bg) ── */
.contact-section { background: var(--mid-ocean); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form input,
.contact-form textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--atmosphere);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: 0.9rem;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #9BBFCF; }
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,168,197,0.1);
}
.form-success {
  display: none;
  background: rgba(0,168,197,0.1);
  color: #007A90;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 500;
  border: 1px solid rgba(0,168,197,0.3);
}

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--atmosphere);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.contact-info-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); }
.info-item { display: flex; align-items: flex-start; gap: 1rem; }
.info-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(0,168,197,0.1);
  border: 1px solid rgba(0,168,197,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.info-item a, .info-item span { color: var(--text); text-decoration: none; font-size: 0.9rem; line-height: 1.5; }
.info-item a:hover { color: var(--cyan); }
.info-item .info-label {
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1px; color: var(--text-light);
  display: block; margin-bottom: 0.15rem;
}

/* ── FOOTER (dark) ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(27,90,122,0.4);
  padding: 3.5rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { font-size: 1.3rem; display: inline-block; margin-bottom: 0.8rem; }
.footer-brand p { font-size: 0.85rem; color: rgba(216,238,246,0.55); max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 1rem;
}
.footer-col a {
  display: block; color: rgba(216,238,246,0.55); text-decoration: none;
  font-size: 0.87rem; margin-bottom: 0.55rem; transition: color .2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(27,90,122,0.35);
  padding-top: 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

/* ── ANIMATIONS ── */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .two-col.reverse > :first-child { order: unset; }
  .two-col.reverse > :last-child  { order: unset; }
  .cards.three { grid-template-columns: 1fr 1fr; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
  .hero-stats-inner { flex-wrap: wrap; }
  .stat-item { min-width: 50%; border-right: none; border-bottom: 1px solid rgba(27,90,122,0.4); }
}

@media (max-width: 640px) {
  .nav-links {
    display: none; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: rgba(13,33,55,0.97);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(27,90,122,0.4);
    padding: 1rem 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .navbar .btn-primary { display: none; }
  .cards.three { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .hero-content { padding-top: 100px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .stat-item { min-width: 100%; }
}
