/* KSSB Global — shared stylesheet (plain CSS, no build step) */

@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap");

:root {
  --radius: 0.75rem;

  --navy: #231540;
  --navy-2: #2f224e;
  --navy-heading: #1a2d42;
  --charcoal: #3a3d45;

  --background: #ffffff;
  --surface: #f8f8fa;
  --surface-2: #f1f1f4;
  --card-bg: #f8fafc;
  --foreground: #3a3d45;

  --primary: #3aa8f0;
  --primary-foreground: #ffffff;
  --primary-hover: #2f8fd6;
  --bullet-blue: #38bdf8;

  --muted-foreground: #7c8194;
  --text-slate: #475569;

  --destructive: #d64545;

  --border: rgba(35, 21, 64, 0.12);
  --border-subtle: #edf2f7;

  --silver: #c8cbd6;
  --silver-bright: #cbced9;

  --font-display: "Cormorant", ui-serif, Georgia, serif;
  --font-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin: 0;
}

.page-h1 {
  background: linear-gradient(120deg, #231540 0%, #3aa8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.accent-text {
  color: inherit;
}

.section-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.navy-panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #ffffff;
}

/* Layout helpers */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem; /* 7xl */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ===== Header / Navbar ===== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 8px 30px -18px rgba(27, 33, 71, 0.15);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

/* ===== Buttons ===== */
.btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--silver);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition:
    color 0.45s ease-out,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.25);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
}
.btn-primary:hover::before {
  transform: scale(40);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.96);
}
.btn-primary:active::before {
  transform: scale(40);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===== Nav links ===== */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex !important;
  }
  .menu-toggle {
    display: none !important;
  }
}
.nav-link {
  position: relative;
  padding: 0.25rem 0;
  color: #000;
  transition: color 0.25s ease-out;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.3s ease-out;
}
.nav-link:hover {
  color: var(--navy);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  color: var(--navy);
  font-weight: 500;
}
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  display: inline-flex;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  z-index: 40;
  flex-direction: column;
  gap: 0.25rem;
  background: #fff;
  padding: 2rem 1.5rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  font-size: 1.125rem;
  color: #000;
}
.mobile-menu a.active {
  color: var(--navy);
  font-weight: 500;
}
.mobile-menu .btn-primary {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  margin-top: -68px;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  padding-top: 68px;
  padding-bottom: 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 36rem;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.15s forwards;
}
.hero-title,
.hero-body,
.hero-eyebrow {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--silver);
}
.hero-eyebrow .line {
  height: 1px;
  width: 2rem;
  background: var(--silver);
}
.hero-title {
  margin-top: 1.25rem;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.hero-body {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--silver);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--silver);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Scroll-reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view {
  transition-delay: calc(var(--reveal-index, 0) * 0.12s);
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-body {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

/* ===== What We Do ===== */
.section {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .section {
    padding: 8rem 2.5rem;
  }
}
.section-heading {
  max-width: 60rem;
}
.section-heading h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
}
.section-heading h2 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--foreground);
}
@media (min-width: 640px) {
  .section-heading h1 {
    font-size: 3.75rem;
  }
  .section-heading h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .section-heading h2 {
    font-size: 2.25rem;
  }
}

.card-grid {
  margin-top: 5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.what-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.what-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 168, 240, 0.4);
  box-shadow: 0 20px 40px -20px rgba(35, 21, 64, 0.3);
}
.what-card .img-wrap {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: var(--surface-2);
}
.what-card .img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.what-card:hover .img-wrap img {
  transform: scale(1.05);
}
.what-card .card-body {
  padding: 2rem;
}
.what-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.what-card p {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stat-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  text-align: center;
}
.stat-icon {
  margin: 0 auto;
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background: rgba(58, 168, 240, 0.15);
  color: var(--silver-bright);
}
.stat-value {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-sans);
}
.stat-label {
  margin-top: 0.75rem;
}

/* ===== CTA panel ===== */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  padding: 4rem 2rem;
}
@media (min-width: 640px) {
  .cta-panel {
    padding: 5rem 3.5rem;
  }
}
.cta-panel-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .cta-panel-inner {
    flex-direction: row;
    align-items: center;
  }
}
.cta-panel h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
.cta-panel h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .cta-panel h1 {
    font-size: 3.75rem;
  }
  .cta-panel h2 {
    font-size: 1.875rem;
  }
}
.cta-glow {
  position: absolute;
  right: -6rem;
  top: -6rem;
  height: 24rem;
  width: 24rem;
  border-radius: 9999px;
  background: rgba(58, 168, 240, 0.1);
  filter: blur(64px);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  margin: 0 auto;
  max-width: 80rem;
  display: grid;
  gap: 3rem;
  padding: 4rem 1.5rem 5rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 5rem 2.5rem;
  }
}
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
}
.footer-logo-badge img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}
.footer-tagline {
  margin-top: 1.5rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--silver);
}
.footer-explore-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--silver);
}
@media (min-width: 640px) {
  .footer-explore-title {
    font-size: 1.875rem;
  }
}
.footer-explore-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.footer-explore-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.footer-explore-list a:hover {
  border-color: rgba(58, 168, 240, 0.4);
  background: rgba(58, 168, 240, 0.1);
  color: var(--primary);
}
.footer-office-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--silver);
}
.footer-office-list li {
  display: flex;
  gap: 0.75rem;
}
.footer-office-list a:hover {
  color: var(--primary);
}
.footer-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--silver);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  margin: 0 auto;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  font-size: 0.75rem;
  color: var(--silver);
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    padding: 1.5rem 2.5rem;
  }
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-info h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
.contact-info h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .contact-info h1 {
    font-size: 3rem;
  }
  .contact-info h2 {
    font-size: 1.875rem;
  }
}
.contact-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.875rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
}
.contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(58, 168, 240, 0.15);
  color: var(--primary);
}
.contact-list h3 {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}
.contact-list p,
.contact-list a {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  display: block;
}
.contact-list a:hover {
  color: var(--primary);
}

.contact-form-panel {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
}
@media (min-width: 640px) {
  .contact-form-panel {
    padding: 2.5rem;
  }
}

.form-field {
  display: block;
  margin-bottom: 1.25rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 168, 240, 0.3);
}
.field-error {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--destructive);
}
.submit-error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.5rem;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.success-state {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success-icon {
  display: grid;
  place-items: center;
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  background: rgba(58, 168, 240, 0.2);
  color: var(--primary);
}
.success-state h2 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.success-state p {
  margin-top: 0.75rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Products & Services Page Styles
   ========================================================================== */

.products-page-main {
  padding-top: 8rem; /* Header clearance */
  padding-bottom: 5.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  margin-bottom: 2.75rem;
  color: var(--muted-foreground);
}
.breadcrumb-nav a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.breadcrumb-nav a:hover {
  color: var(--navy-heading);
}
.breadcrumb-separator {
  opacity: 0.45;
  font-size: 0.85rem;
}
.breadcrumb-current {
  color: var(--navy-heading);
  font-weight: 600;
}

.products-hero-section {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 4.5rem auto;
}
.products-hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--navy-heading);
}
.products-hero-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--navy-heading);
}
.products-hero-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-slate);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5.5rem;
}
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.product-card-img-wrap {
  width: 100%;
  height: 18rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img-wrap.dark-bg {
  background: #0f172a;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 1.75rem 2rem 2.25rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Card titles matching exact screenshot */
.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--navy-heading);
  margin: 0 0 1.25rem 0;
}

.product-card-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-slate);
}

/* Bullet list with custom blue dots matching screenshot */
.product-card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-card-body ul li {
  position: relative;
  padding-left: 1.35rem;
  font-family: var(--font-body);
  font-size: 0.885rem;
  line-height: 1.65;
  color: var(--text-slate);
  margin-bottom: 0.75rem;
}
.product-card-body ul li:last-child {
  margin-bottom: 0;
}
.product-card-body ul li::before {
  content: "•";
  position: absolute;
  left: 0.05rem;
  top: -0.1rem;
  color: var(--bullet-blue);
  font-size: 1.25rem;
  line-height: 1;
}

/* Services section */
.services-wrapper {
  padding-top: 4rem;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 5.5rem;
}
.services-header {
  margin-bottom: 2.5rem;
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-heading);
  margin-bottom: 0.35rem;
}
.services-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-slate);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 2.25rem;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-heading);
  margin-bottom: 1rem;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-slate);
  margin: 0;
}

/* KSSB Global — shared stylesheet (plain CSS, no build step) */

@import url("https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400&family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@400;500;600&display=swap");

:root {
  --radius: 0.75rem;

  --navy: #231540;
  --navy-2: #2f224e;
  --navy-heading: #1a2d42;
  --charcoal: #3a3d45;

  --background: #ffffff;
  --surface: #f8f8fa;
  --surface-2: #f1f1f4;
  --card-bg: #f8fafc;
  --foreground: #3a3d45;

  --primary: #3aa8f0;
  --primary-foreground: #ffffff;
  --primary-hover: #2f8fd6;
  --bullet-blue: #38bdf8;

  --muted-foreground: #7c8194;
  --text-slate: #475569;

  --destructive: #d64545;

  --border: rgba(35, 21, 64, 0.12);
  --border-subtle: #edf2f7;

  --silver: #c8cbd6;
  --silver-bright: #cbced9;

  --font-display: "Cormorant", ui-serif, Georgia, serif;
  --font-sans: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin: 0;
}

.page-h1 {
  background: linear-gradient(120deg, #231540 0%, #3aa8f0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
}

.accent-text {
  color: inherit;
}

.section-label {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted-foreground);
}

.navy-panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #ffffff;
}

/* Layout helpers */
.container {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem; /* 7xl */
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1024px) {
  .container {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}

/* ===== Header / Navbar ===== */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 8px 30px -18px rgba(27, 33, 71, 0.15);
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo img {
  height: 2.75rem;
  width: auto;
  object-fit: contain;
}

/* ===== Buttons ===== */
.btn-primary {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  background: var(--silver);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition:
    color 0.45s ease-out,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 24px -10px rgba(0, 0, 0, 0.25);
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--navy);
  transform: scale(0);
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
  z-index: -1;
}
.btn-primary:hover {
  color: #ffffff;
  transform: translateY(-3px) scale(1.04);
}
.btn-primary:hover::before {
  transform: scale(40);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.96);
}
.btn-primary:active::before {
  transform: scale(40);
}
.btn-primary:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* ===== Nav links ===== */
.nav-links {
  display: none;
  align-items: center;
  gap: 2.25rem;
}
@media (min-width: 1024px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex !important;
  }
  .menu-toggle {
    display: none !important;
  }
}
.nav-link {
  position: relative;
  padding: 0.25rem 0;
  color: #000;
  transition: color 0.25s ease-out;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--navy);
  transition: width 0.3s ease-out;
}
.nav-link:hover {
  color: var(--navy);
}
.nav-link:hover::after {
  width: 100%;
}
.nav-link.active {
  color: var(--navy);
  font-weight: 500;
}
.nav-link.active::after {
  width: 100%;
}

.menu-toggle {
  background: none;
  border: none;
  color: #000;
  cursor: pointer;
  display: inline-flex;
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: 68px;
  z-index: 40;
  flex-direction: column;
  gap: 0.25rem;
  background: #fff;
  padding: 2rem 1.5rem;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  border-bottom: 1px solid #e5e7eb;
  padding: 1rem 0;
  font-size: 1.125rem;
  color: #000;
}
.mobile-menu a.active {
  color: var(--navy);
  font-weight: 500;
}
.mobile-menu .btn-primary {
  margin-top: 1.5rem;
  align-self: flex-start;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  margin-top: -68px;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--navy);
  padding-top: 68px;
  padding-bottom: 6rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg video {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 36rem;
  opacity: 0;
  animation: heroFadeUp 1s ease-out 0.15s forwards;
}
.hero-title,
.hero-body,
.hero-eyebrow {
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.55);
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--silver);
}
.hero-eyebrow .line {
  height: 1px;
  width: 2rem;
  background: var(--silver);
}
.hero-title {
  margin-top: 1.25rem;
  font-size: 2.75rem;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.hero-body {
  margin-top: 1.5rem;
  max-width: 28rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--silver);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--silver);
  animation: bounce 1.6s infinite;
}
@keyframes bounce {
  0%,
  100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -6px);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Scroll-reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s ease-out,
    transform 0.7s ease-out;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.in-view {
  transition-delay: calc(var(--reveal-index, 0) * 0.12s);
}
@media (min-width: 640px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .hero-body {
    font-size: 1.125rem;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 4.25rem;
  }
}

/* ===== What We Do ===== */
.section {
  margin-left: auto;
  margin-right: auto;
  max-width: 80rem;
  padding: 6rem 1.5rem;
}
@media (min-width: 1024px) {
  .section {
    padding: 8rem 2.5rem;
  }
}
.section-heading {
  max-width: 60rem;
}
.section-heading h1 {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.15;
}
.section-heading h2 {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--foreground);
}
@media (min-width: 640px) {
  .section-heading h1 {
    font-size: 3.75rem;
  }
  .section-heading h2 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1024px) {
  .section-heading h2 {
    font-size: 2.25rem;
  }
}

.card-grid {
  margin-top: 5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.what-card {
  overflow: hidden;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.what-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 168, 240, 0.4);
  box-shadow: 0 20px 40px -20px rgba(35, 21, 64, 0.3);
}
.what-card .img-wrap {
  aspect-ratio: 16 / 10;
  width: 100%;
  overflow: hidden;
  background: var(--surface-2);
}
.what-card .img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.what-card:hover .img-wrap img {
  transform: scale(1.05);
}
.what-card .card-body {
  padding: 2rem;
}
.what-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.what-card p {
  margin-top: 0.75rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

/* ===== Stats ===== */
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.stat-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
  text-align: center;
}
.stat-icon {
  margin: 0 auto;
  display: grid;
  place-items: center;
  height: 3rem;
  width: 3rem;
  border-radius: 0.75rem;
  background: rgba(58, 168, 240, 0.15);
  color: var(--silver-bright);
}
.stat-value {
  margin-top: 1.5rem;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-sans);
}
.stat-label {
  margin-top: 0.75rem;
}

/* ===== CTA panel ===== */
.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 50%, var(--surface) 100%);
  padding: 4rem 2rem;
}
@media (min-width: 640px) {
  .cta-panel {
    padding: 5rem 3.5rem;
  }
}
.cta-panel-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .cta-panel-inner {
    flex-direction: row;
    align-items: center;
  }
}
.cta-panel h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
.cta-panel h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .cta-panel h1 {
    font-size: 3.75rem;
  }
  .cta-panel h2 {
    font-size: 1.875rem;
  }
}
.cta-glow {
  position: absolute;
  right: -6rem;
  top: -6rem;
  height: 24rem;
  width: 24rem;
  border-radius: 9999px;
  background: rgba(58, 168, 240, 0.1);
  filter: blur(64px);
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  margin-top: 6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-grid {
  margin: 0 auto;
  max-width: 80rem;
  display: grid;
  gap: 3rem;
  padding: 4rem 1.5rem 5rem;
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 5rem 2.5rem;
  }
}
.footer-logo-badge {
  display: inline-flex;
  align-items: center;
}
.footer-logo-badge img {
  height: 5rem;
  width: auto;
  object-fit: contain;
}
.footer-tagline {
  margin-top: 1.5rem;
  max-width: 20rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--silver);
}
.footer-explore-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--silver);
}
@media (min-width: 640px) {
  .footer-explore-title {
    font-size: 1.875rem;
  }
}
.footer-explore-list {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.footer-explore-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.footer-explore-list a:hover {
  border-color: rgba(58, 168, 240, 0.4);
  background: rgba(58, 168, 240, 0.1);
  color: var(--primary);
}
.footer-office-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--silver);
}
.footer-office-list li {
  display: flex;
  gap: 0.75rem;
}
.footer-office-list a:hover {
  color: var(--primary);
}
.footer-icon {
  flex-shrink: 0;
  margin-top: 0.125rem;
  color: var(--silver);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-bottom-inner {
  margin: 0 auto;
  max-width: 80rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem;
  font-size: 0.75rem;
  color: var(--silver);
}
@media (min-width: 640px) {
  .footer-bottom-inner {
    flex-direction: row;
    padding: 1.5rem 2.5rem;
  }
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.contact-info h1 {
  font-size: 2.25rem;
  font-weight: 700;
}
.contact-info h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}
@media (min-width: 640px) {
  .contact-info h1 {
    font-size: 3rem;
  }
  .contact-info h2 {
    font-size: 1.875rem;
  }
}
.contact-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  font-size: 0.875rem;
}
.contact-list li {
  display: flex;
  gap: 1rem;
}
.contact-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(58, 168, 240, 0.15);
  color: var(--primary);
}
.contact-list h3 {
  margin-top: 0.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--foreground);
}
.contact-list p,
.contact-list a {
  margin-top: 0.25rem;
  color: var(--muted-foreground);
  display: block;
}
.contact-list a:hover {
  color: var(--primary);
}

.contact-form-panel {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2rem;
}
@media (min-width: 640px) {
  .contact-form-panel {
    padding: 2.5rem;
  }
}

.form-field {
  display: block;
  margin-bottom: 1.25rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-sans);
  color: var(--foreground);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(58, 168, 240, 0.3);
}
.field-error {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--destructive);
}
.submit-error {
  font-size: 0.75rem;
  color: var(--destructive);
  margin-top: 0.5rem;
}
.form-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}

.success-state {
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.success-icon {
  display: grid;
  place-items: center;
  height: 4rem;
  width: 4rem;
  border-radius: 9999px;
  background: rgba(58, 168, 240, 0.2);
  color: var(--primary);
}
.success-state h2 {
  margin-top: 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
}
.success-state p {
  margin-top: 0.75rem;
  max-width: 24rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.spin {
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.hidden {
  display: none !important;
}

/* ==========================================================================
   Products & Services Page Styles
   ========================================================================== */

.products-page-main {
  padding-top: 8rem; /* Header clearance */
  padding-bottom: 5.5rem;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.95rem;
  margin-bottom: 2.75rem;
  color: var(--muted-foreground);
}
.breadcrumb-nav a {
  color: var(--muted-foreground);
  transition: color 0.2s ease;
  display: inline-flex;
  align-items: center;
}
.breadcrumb-nav a:hover {
  color: var(--navy-heading);
}
.breadcrumb-separator {
  opacity: 0.45;
  font-size: 0.85rem;
}
.breadcrumb-current {
  color: var(--navy-heading);
  font-weight: 600;
}

.products-hero-section {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 4.5rem auto;
}
.products-hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
  color: var(--navy-heading);
}
.products-hero-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 500;
  margin-bottom: 1.25rem;
  color: var(--navy-heading);
}
.products-hero-section p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-slate);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 5.5rem;
}
@media (max-width: 992px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.07);
}

.product-card-img-wrap {
  width: 100%;
  height: 18rem;
  background: #ffffff;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img-wrap.dark-bg {
  background: #0f172a;
}
.product-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-body {
  padding: 1.75rem 2rem 2.25rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.005em;
  color: var(--navy-heading);
  margin: 0 0 1.25rem 0;
}

.product-card-body p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-slate);
}

.product-card-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.product-card-body ul li {
  position: relative;
  padding-left: 1.35rem;
  font-family: var(--font-body);
  font-size: 0.885rem;
  line-height: 1.65;
  color: var(--text-slate);
  margin-bottom: 0.75rem;
}
.product-card-body ul li:last-child {
  margin-bottom: 0;
}
.product-card-body ul li::before {
  content: "•";
  position: absolute;
  left: 0.05rem;
  top: -0.1rem;
  color: var(--bullet-blue);
  font-size: 1.25rem;
  line-height: 1;
}

.services-wrapper {
  padding-top: 4rem;
  border-top: 1px solid var(--border-subtle);
  margin-bottom: 5.5rem;
}
.services-header {
  margin-bottom: 2.5rem;
}
.services-header h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--navy-heading);
  margin-bottom: 0.35rem;
}
.services-header h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-slate);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 2.25rem;
}
.service-card h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-heading);
  margin-bottom: 1rem;
}
.service-card p {
  font-family: var(--font-body);
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-slate);
  margin: 0;
}

/* ==========================================================================
   Size Guide Page Styles
   ========================================================================== */

.size-guide-main {
  padding-top: 8rem;
  padding-bottom: 6rem;
}

.size-guide-hero {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 3.5rem auto;
}

.size-guide-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 600;
  color: var(--navy-heading);
  margin-bottom: 0.5rem;
}

.size-guide-hero h2 {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  font-weight: 400;
  color: var(--navy-heading);
  margin-bottom: 1.25rem;
}

.size-guide-hero p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-slate);
}

/* Master Overview Card */
.size-overview-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  padding: 0;
  overflow: hidden;
  margin-bottom: 6rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.size-overview-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Alternating Row Grid */
.measurement-sections {
  display: flex;
  flex-direction: column;
  gap: 5.5rem;
  margin-bottom: 5.5rem;
}

.measurement-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

@media (max-width: 900px) {
  .measurement-row {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.measurement-row.reverse {
  direction: rtl;
}

.measurement-row.reverse > * {
  direction: ltr;
}

/* Combined Diagram + Spec Table Card */
.measurement-box {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.measurement-box img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text Content Next to Graphic */
.measurement-text-pane .eyebrow-step {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #64748b;
  margin-bottom: 0.6rem;
  display: block;
}

.measurement-text-pane h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy-heading);
  margin-bottom: 1rem;
}

.measurement-text-pane p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-slate);
  margin: 0;
}

/* Bottom PDF Download Banner */
.download-cta-wrap {
  text-align: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.btn-download-pdf {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  border-radius: 9999px;
  background: var(--silver);
  color: #1e293b;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.btn-download-pdf:hover {
  background: var(--navy);
  color: #ffffff;
  transform: translateY(-2px);
}

/* ==========================================================================
   About Us Page Styles
   ========================================================================== */

.about-page-main {
  padding-top: 8rem; /* Header clearance */
  padding-bottom: 6rem;
}

/* About Hero Header */
.about-hero-section {
  text-align: center;
  max-width: 52rem;
  margin: 0 auto 4.5rem auto;
}

.about-hero-section h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 3.85rem);
  font-weight: 600;
  color: var(--navy-heading, #1a2d42);
  margin-bottom: 0.85rem;
}

.about-hero-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.95rem);
  font-weight: 500;
  line-height: 1.35;
  color: var(--navy-heading, #1a2d42);
  margin-bottom: 1.5rem;
}

.about-hero-section p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-slate, #475569);
  max-width: 46rem;
  margin: 0 auto;
}

/* Two-Column Story Section */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.about-story-img-wrap {
  width: 100%;
  height: 24rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  background: var(--surface-2);
}

.about-story-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-story-content p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-slate, #475569);
  margin-bottom: 1.5rem;
}

.about-story-content p:last-child {
  margin-bottom: 0;
}

/* "Our Experience Spans" Badge Banner */
.experience-spans-card {
  background: var(--card-bg, #f8fafc);
  border: 1px solid var(--border-subtle, #edf2f7);
  border-radius: 1.25rem;
  padding: 2.25rem 2.5rem;
  margin-bottom: 6rem;
}

.experience-spans-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #274b74;
  margin-bottom: 1.5rem;
}

.experience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.experience-tag {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 0.55rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: #475569;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03);
}

/* Why Us Section Heading */
.why-us-heading {
  margin-bottom: 4rem;
}

.why-us-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.25rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy-heading, #1a2d42);
  margin-bottom: 0.5rem;
}

.why-us-heading .advantage-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #2b7bc4;
}

/* Why Us Timeline / Alternating Spine */
.why-us-timeline {
  position: relative;
  max-width: 68rem;
  margin: 0 auto 7rem auto;
}

/* Center vertical divider */
.why-us-timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.timeline-step {
  position: relative;
  width: 50%;
  padding: 1.5rem 3.5rem;
  margin-bottom: 2rem;
  box-sizing: border-box;
}

.timeline-step.left {
  left: 0;
  text-align: right;
}

.timeline-step.right {
  left: 50%;
  text-align: left;
}

/* Circular spine node */
.timeline-step::after {
  content: "";
  position: absolute;
  top: 2rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #2b7bc4;
  box-sizing: border-box;
  z-index: 2;
}

.timeline-step.left::after {
  right: -7px;
}

.timeline-step.right::after {
  left: -7px;
}

.timeline-step-num {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #64748b;
  margin-bottom: 0.4rem;
  display: block;
}

.timeline-step h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy-heading, #1a2d42);
  line-height: 1.3;
  margin-bottom: 0.75rem;
}

.timeline-step h3 .accent-word {
  color: #2b7bc4;
}

.timeline-step p {
  font-family: var(--font-body);
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-slate, #475569);
  margin: 0;
}

@media (max-width: 768px) {
  .why-us-timeline::before {
    left: 1.25rem;
  }
  .timeline-step {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding-left: 3.5rem;
    padding-right: 1rem;
  }
  .timeline-step::after {
    left: 0.85rem !important;
    right: auto !important;
  }
}

/* Approach / What Sets Us Apart Section */
.approach-section {
  margin-bottom: 6rem;
}

.approach-heading {
  margin-bottom: 3rem;
}

.approach-heading h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 600;
  color: var(--navy-heading, #1a2d42);
  margin-bottom: 0.35rem;
}

.approach-heading h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--navy-heading, #1a2d42);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 992px) {
  .approach-grid {
    grid-template-columns: 1fr;
  }
}

.approach-card {
  background: var(--card-bg, #f8fafc);
  border: 1px solid var(--border-subtle, #edf2f7);
  border-radius: 1.25rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.approach-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.approach-img-wrap {
  width: 100%;
  height: 13rem;
  border-radius: 0.85rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: #ffffff;
}

.approach-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.approach-card-body h4 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-heading, #1a2d42);
  margin-bottom: 0.75rem;
}

.approach-card-body p {
  font-family: var(--font-body);
  font-size: 0.885rem;
  line-height: 1.7;
  color: var(--text-slate, #475569);
  margin: 0;
}

/* Our Commitment Banner Panel */
.commitment-panel {
  background: #1e1338;
  border-radius: 1.5rem;
  padding: 5rem 3rem;
  text-align: center;
  color: #ffffff;
  margin-bottom: 4rem;
  box-shadow: 0 16px 40px -15px rgba(35, 21, 64, 0.5);
}

.commitment-panel h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #38bdf8;
  margin-bottom: 1.25rem;
}

.commitment-panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 500;
  line-height: 1.35;
  color: #ffffff;
  margin-bottom: 1.75rem;
}

.commitment-panel p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.85;
  color: #cbd5e1;
  max-width: 48rem;
  margin: 0 auto;
}